pub struct CipherLoginModel {
pub uri: Option<String>,
pub uris: Option<Vec<CipherLoginUriModel>>,
pub username: Option<String>,
pub password: Option<String>,
pub password_revision_date: Option<String>,
pub totp: Option<String>,
pub autofill_on_page_load: Option<bool>,
pub fido2_credentials: Option<Vec<CipherFido2CredentialModel>>,
}
Fields§
§uri: Option<String>
§uris: Option<Vec<CipherLoginUriModel>>
§username: Option<String>
§password: Option<String>
§password_revision_date: Option<String>
§totp: Option<String>
§autofill_on_page_load: Option<bool>
§fido2_credentials: Option<Vec<CipherFido2CredentialModel>>
Implementations§
Source§impl CipherLoginModel
impl CipherLoginModel
pub fn new() -> CipherLoginModel
Trait Implementations§
Source§impl Clone for CipherLoginModel
impl Clone for CipherLoginModel
Source§fn clone(&self) -> CipherLoginModel
fn clone(&self) -> CipherLoginModel
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 CipherLoginModel
impl Debug for CipherLoginModel
Source§impl Default for CipherLoginModel
impl Default for CipherLoginModel
Source§fn default() -> CipherLoginModel
fn default() -> CipherLoginModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CipherLoginModel
impl<'de> Deserialize<'de> for CipherLoginModel
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 CipherLoginModel
impl PartialEq for CipherLoginModel
Source§impl Serialize for CipherLoginModel
impl Serialize for CipherLoginModel
impl StructuralPartialEq for CipherLoginModel
Auto Trait Implementations§
impl Freeze for CipherLoginModel
impl RefUnwindSafe for CipherLoginModel
impl Send for CipherLoginModel
impl Sync for CipherLoginModel
impl Unpin for CipherLoginModel
impl UnwindSafe for CipherLoginModel
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