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<CipherIdentityModel> for CipherIdentityModel
impl PartialEq<CipherIdentityModel> for CipherIdentityModel
source§fn eq(&self, other: &CipherIdentityModel) -> bool
fn eq(&self, other: &CipherIdentityModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.