pub struct CipherIdentityModel {Show 18 fields
pub title: Option<String>,
pub first_name: Option<String>,
pub middle_name: Option<String>,
pub last_name: Option<String>,
pub address1: Option<String>,
pub address2: Option<String>,
pub address3: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub postal_code: Option<String>,
pub country: Option<String>,
pub company: Option<String>,
pub email: Option<String>,
pub phone: Option<String>,
pub ssn: Option<String>,
pub username: Option<String>,
pub passport_number: Option<String>,
pub license_number: Option<String>,
}
Fields§
§title: Option<String>
§first_name: Option<String>
§middle_name: Option<String>
§last_name: Option<String>
§address1: Option<String>
§address2: Option<String>
§address3: Option<String>
§city: Option<String>
§state: Option<String>
§postal_code: Option<String>
§country: Option<String>
§company: Option<String>
§email: Option<String>
§phone: Option<String>
§ssn: Option<String>
§username: Option<String>
§passport_number: Option<String>
§license_number: Option<String>
Implementations§
Source§impl CipherIdentityModel
impl CipherIdentityModel
pub fn new() -> CipherIdentityModel
Trait Implementations§
Source§impl Clone for CipherIdentityModel
impl Clone for CipherIdentityModel
Source§fn clone(&self) -> CipherIdentityModel
fn clone(&self) -> CipherIdentityModel
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 CipherIdentityModel
impl Debug for CipherIdentityModel
Source§impl Default for CipherIdentityModel
impl Default for CipherIdentityModel
Source§fn default() -> CipherIdentityModel
fn default() -> CipherIdentityModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CipherIdentityModel
impl<'de> Deserialize<'de> for CipherIdentityModel
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 CipherIdentityModel
impl PartialEq for CipherIdentityModel
Source§impl Serialize for CipherIdentityModel
impl Serialize for CipherIdentityModel
impl StructuralPartialEq for CipherIdentityModel
Auto Trait Implementations§
impl Freeze for CipherIdentityModel
impl RefUnwindSafe for CipherIdentityModel
impl Send for CipherIdentityModel
impl Sync for CipherIdentityModel
impl Unpin for CipherIdentityModel
impl UnwindSafe for CipherIdentityModel
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