pub struct MsgraphPhysicalAddress {
pub street: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub country_or_region: Option<String>,
pub postal_code: Option<String>,
}Expand description
A physical address of a contact (home, business or other).
The whole object is replaced at once, so its components stay plain options.
Fields§
§street: Option<String>The street name and number.
city: Option<String>The city.
state: Option<String>The state or province.
country_or_region: Option<String>The country or region.
postal_code: Option<String>The postal code.
Trait Implementations§
Source§impl Clone for MsgraphPhysicalAddress
impl Clone for MsgraphPhysicalAddress
Source§fn clone(&self) -> MsgraphPhysicalAddress
fn clone(&self) -> MsgraphPhysicalAddress
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 MsgraphPhysicalAddress
impl Debug for MsgraphPhysicalAddress
Source§impl Default for MsgraphPhysicalAddress
impl Default for MsgraphPhysicalAddress
Source§fn default() -> MsgraphPhysicalAddress
fn default() -> MsgraphPhysicalAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphPhysicalAddress
impl<'de> Deserialize<'de> for MsgraphPhysicalAddress
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
impl Eq for MsgraphPhysicalAddress
Source§impl PartialEq for MsgraphPhysicalAddress
impl PartialEq for MsgraphPhysicalAddress
Source§impl Serialize for MsgraphPhysicalAddress
impl Serialize for MsgraphPhysicalAddress
impl StructuralPartialEq for MsgraphPhysicalAddress
Auto Trait Implementations§
impl Freeze for MsgraphPhysicalAddress
impl RefUnwindSafe for MsgraphPhysicalAddress
impl Send for MsgraphPhysicalAddress
impl Sync for MsgraphPhysicalAddress
impl Unpin for MsgraphPhysicalAddress
impl UnsafeUnpin for MsgraphPhysicalAddress
impl UnwindSafe for MsgraphPhysicalAddress
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