pub struct ApproximateLocation {
    pub type: String,
    pub country: ApproximateLocation_Country,
    pub region: ApproximateLocation_Region,
    pub city: ApproximateLocation_City,
    pub timezone: ApproximateLocation_Timezone,
}Fields§
§type: StringThe type of location approximation.
country: ApproximateLocation_Country§region: ApproximateLocation_Region§city: ApproximateLocation_City§timezone: ApproximateLocation_TimezoneTrait Implementations§
Source§impl Clone for ApproximateLocation
 
impl Clone for ApproximateLocation
Source§fn clone(&self) -> ApproximateLocation
 
fn clone(&self) -> ApproximateLocation
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ApproximateLocation
impl RefUnwindSafe for ApproximateLocation
impl Send for ApproximateLocation
impl Sync for ApproximateLocation
impl Unpin for ApproximateLocation
impl UnwindSafe for ApproximateLocation
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