Struct bitwarden_api_api::models::secrets_with_projects_inner_secret::SecretsWithProjectsInnerSecret
source · pub struct SecretsWithProjectsInnerSecret {
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub key: Option<String>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
pub projects: Option<Vec<SecretWithProjectsInnerProject>>,
pub read: Option<bool>,
pub write: Option<bool>,
}
Fields§
§id: Option<Uuid>
§organization_id: Option<Uuid>
§key: Option<String>
§creation_date: Option<String>
§revision_date: Option<String>
§projects: Option<Vec<SecretWithProjectsInnerProject>>
§read: Option<bool>
§write: Option<bool>
Implementations§
Trait Implementations§
source§impl Clone for SecretsWithProjectsInnerSecret
impl Clone for SecretsWithProjectsInnerSecret
source§fn clone(&self) -> SecretsWithProjectsInnerSecret
fn clone(&self) -> SecretsWithProjectsInnerSecret
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<'de> Deserialize<'de> for SecretsWithProjectsInnerSecret
impl<'de> Deserialize<'de> for SecretsWithProjectsInnerSecret
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 SecretsWithProjectsInnerSecret
impl PartialEq for SecretsWithProjectsInnerSecret
source§fn eq(&self, other: &SecretsWithProjectsInnerSecret) -> bool
fn eq(&self, other: &SecretsWithProjectsInnerSecret) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecretsWithProjectsInnerSecret
Auto Trait Implementations§
impl Freeze for SecretsWithProjectsInnerSecret
impl RefUnwindSafe for SecretsWithProjectsInnerSecret
impl Send for SecretsWithProjectsInnerSecret
impl Sync for SecretsWithProjectsInnerSecret
impl Unpin for SecretsWithProjectsInnerSecret
impl UnwindSafe for SecretsWithProjectsInnerSecret
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