pub struct SecretResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub key: Option<String>,
pub value: Option<String>,
pub note: Option<String>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
pub projects: Option<Vec<SecretResponseInnerProject>>,
pub read: Option<bool>,
pub write: Option<bool>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§organization_id: Option<Uuid>
§key: Option<String>
§value: Option<String>
§note: Option<String>
§creation_date: Option<String>
§revision_date: Option<String>
§projects: Option<Vec<SecretResponseInnerProject>>
§read: Option<bool>
§write: Option<bool>
Implementations§
Source§impl SecretResponseModel
impl SecretResponseModel
pub fn new() -> SecretResponseModel
Trait Implementations§
Source§impl Clone for SecretResponseModel
impl Clone for SecretResponseModel
Source§fn clone(&self) -> SecretResponseModel
fn clone(&self) -> SecretResponseModel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SecretResponseModel
impl Debug for SecretResponseModel
Source§impl Default for SecretResponseModel
impl Default for SecretResponseModel
Source§fn default() -> SecretResponseModel
fn default() -> SecretResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretResponseModel
impl<'de> Deserialize<'de> for SecretResponseModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SecretResponseModel
impl PartialEq for SecretResponseModel
Source§impl Serialize for SecretResponseModel
impl Serialize for SecretResponseModel
impl StructuralPartialEq for SecretResponseModel
Auto Trait Implementations§
impl Freeze for SecretResponseModel
impl RefUnwindSafe for SecretResponseModel
impl Send for SecretResponseModel
impl Sync for SecretResponseModel
impl Unpin for SecretResponseModel
impl UnwindSafe for SecretResponseModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more