pub struct CloLocation {
pub country: Option<String>,
pub state: Option<String>,
pub city: Option<String>,
pub postal_code: Option<String>,
pub line1: Option<String>,
pub line2: Option<String>,
pub latitude: Option<String>,
pub longitude: Option<String>,
}
Fields§
§country: Option<String>
§state: Option<String>
§city: Option<String>
§postal_code: Option<String>
§line1: Option<String>
§line2: Option<String>
§latitude: Option<String>
§longitude: Option<String>
Trait Implementations§
Source§impl Clone for CloLocation
impl Clone for CloLocation
Source§fn clone(&self) -> CloLocation
fn clone(&self) -> CloLocation
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 CloLocation
impl Debug for CloLocation
Source§impl<'de> Deserialize<'de> for CloLocation
impl<'de> Deserialize<'de> for CloLocation
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 CloLocation
impl RefUnwindSafe for CloLocation
impl Send for CloLocation
impl Sync for CloLocation
impl Unpin for CloLocation
impl UnwindSafe for CloLocation
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