pub struct Cipher {Show 13 fields
pub id: Option<Uuid>,
pub user_id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub type: Option<CipherType>,
pub data: Option<String>,
pub favorites: Option<String>,
pub folders: Option<String>,
pub attachments: Option<String>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
pub deleted_date: Option<String>,
pub reprompt: Option<CipherRepromptType>,
pub key: Option<String>,
}
Fields§
§id: Option<Uuid>
§user_id: Option<Uuid>
§organization_id: Option<Uuid>
§type: Option<CipherType>
§data: Option<String>
§favorites: Option<String>
§folders: Option<String>
§attachments: Option<String>
§creation_date: Option<String>
§revision_date: Option<String>
§deleted_date: Option<String>
§reprompt: Option<CipherRepromptType>
§key: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cipher
impl<'de> Deserialize<'de> for Cipher
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
impl StructuralPartialEq for Cipher
Auto Trait Implementations§
impl Freeze for Cipher
impl RefUnwindSafe for Cipher
impl Send for Cipher
impl Sync for Cipher
impl Unpin for Cipher
impl UnwindSafe for Cipher
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