pub struct MainLocation {
pub geo: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub city: Option<String>,
pub address: Option<String>,
pub continent: Option<String>,
pub postal_code: Option<String>,
}
Expand description
Company main location
Fields§
§geo: Option<String>
§country: Option<String>
§state: Option<String>
§city: Option<String>
§address: Option<String>
§continent: Option<String>
§postal_code: Option<String>
Trait Implementations§
Source§impl Clone for MainLocation
impl Clone for MainLocation
Source§fn clone(&self) -> MainLocation
fn clone(&self) -> MainLocation
Returns a duplicate of the value. Read more
1.0.0 · 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 MainLocation
impl Debug for MainLocation
Source§impl<'de> Deserialize<'de> for MainLocation
impl<'de> Deserialize<'de> for MainLocation
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 MainLocation
impl RefUnwindSafe for MainLocation
impl Send for MainLocation
impl Sync for MainLocation
impl Unpin for MainLocation
impl UnwindSafe for MainLocation
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