pub struct Address {
pub addr1: Option<String>,
pub addr2: Option<String>,
pub addr3: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub postal_code: Option<String>,
pub country: Option<String>,
pub phone: Vec<String>,
pub email: Vec<String>,
pub fax: Vec<String>,
pub www: Vec<String>,
}
Fields§
§addr1: Option<String>
§addr2: Option<String>
§addr3: Option<String>
§city: Option<String>
§state: Option<String>
§postal_code: Option<String>
§country: Option<String>
§phone: Vec<String>
§email: Vec<String>
§fax: Vec<String>
§www: Vec<String>
Implementations§
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 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