pub struct LocationAddress {
pub address1: String,
pub address2: String,
pub city: String,
pub country: String,
pub cross_street: String,
pub state: String,
pub timezone: String,
pub zip_code: String,
}Fields§
§address1: String§address2: String§city: String§country: String§cross_street: String§state: String§timezone: String§zip_code: StringTrait Implementations§
Source§impl Debug for LocationAddress
impl Debug for LocationAddress
Source§impl<'de> Deserialize<'de> for LocationAddress
impl<'de> Deserialize<'de> for LocationAddress
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
Auto Trait Implementations§
impl Freeze for LocationAddress
impl RefUnwindSafe for LocationAddress
impl Send for LocationAddress
impl Sync for LocationAddress
impl Unpin for LocationAddress
impl UnwindSafe for LocationAddress
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