pub struct ContactAddressPrimary {
pub city: Option<String>,
pub country: String,
pub first_name: String,
pub last_name: String,
pub line1: String,
pub line2: Option<String>,
pub line3: Option<String>,
pub postcode: Option<String>,
pub region: Option<String>,
pub additional: AdditionalMembers,
}Fields§
§city: Option<String>§country: String§first_name: String§last_name: String§line1: String§line2: Option<String>§line3: Option<String>§postcode: Option<String>§region: Option<String>§additional: AdditionalMembersTrait Implementations§
Source§impl Clone for ContactAddressPrimary
impl Clone for ContactAddressPrimary
Source§fn clone(&self) -> ContactAddressPrimary
fn clone(&self) -> ContactAddressPrimary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContactAddressPrimary
impl Debug for ContactAddressPrimary
Source§impl Default for ContactAddressPrimary
impl Default for ContactAddressPrimary
Source§fn default() -> ContactAddressPrimary
fn default() -> ContactAddressPrimary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContactAddressPrimary
impl<'de> Deserialize<'de> for ContactAddressPrimary
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 ContactAddressPrimary
impl PartialEq for ContactAddressPrimary
Source§impl Serialize for ContactAddressPrimary
impl Serialize for ContactAddressPrimary
impl StructuralPartialEq for ContactAddressPrimary
Auto Trait Implementations§
impl Freeze for ContactAddressPrimary
impl RefUnwindSafe for ContactAddressPrimary
impl Send for ContactAddressPrimary
impl Sync for ContactAddressPrimary
impl Unpin for ContactAddressPrimary
impl UnsafeUnpin for ContactAddressPrimary
impl UnwindSafe for ContactAddressPrimary
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