pub struct Address {
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>,
}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>Trait Implementations§
impl StructuralPartialEq for Address
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnsafeUnpin for Address
impl UnwindSafe for Address
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