pub struct PersonalAddress {Show 14 fields
pub internal_location: Option<String>,
pub street_number: Option<String>,
pub street: Option<String>,
pub postal_box: Option<String>,
pub town: Option<String>,
pub region: Option<String>,
pub postal_code: Option<String>,
pub country: Option<String>,
pub facsimile_number: Option<String>,
pub telephone_number: Option<String>,
pub electronic_mail_address: Option<String>,
pub telex_number: Option<String>,
pub people: Vec<PersonRef>,
pub description: Option<String>,
}Fields§
§internal_location: Option<String>§street_number: Option<String>§street: Option<String>§postal_box: Option<String>§town: Option<String>§region: Option<String>§postal_code: Option<String>§country: Option<String>§facsimile_number: Option<String>§telephone_number: Option<String>§electronic_mail_address: Option<String>§telex_number: Option<String>§people: Vec<PersonRef>§description: Option<String>Trait Implementations§
Source§impl Clone for PersonalAddress
impl Clone for PersonalAddress
Source§fn clone(&self) -> PersonalAddress
fn clone(&self) -> PersonalAddress
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 PersonalAddress
impl Debug for PersonalAddress
Source§impl PartialEq for PersonalAddress
impl PartialEq for PersonalAddress
Source§fn eq(&self, other: &PersonalAddress) -> bool
fn eq(&self, other: &PersonalAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PersonalAddress
Auto Trait Implementations§
impl Freeze for PersonalAddress
impl RefUnwindSafe for PersonalAddress
impl Send for PersonalAddress
impl Sync for PersonalAddress
impl Unpin for PersonalAddress
impl UnsafeUnpin for PersonalAddress
impl UnwindSafe for PersonalAddress
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