pub struct ApproximateLocation {
pub city: Option<Value>,
pub country: Option<Value>,
pub region: Option<Value>,
pub timezone: Option<Value>,
pub _type: String,
}
Fields§
§city: Option<Value>
§country: Option<Value>
§region: Option<Value>
§timezone: Option<Value>
§_type: String
The type of location approximation. Always approximate
.
Trait Implementations§
Source§impl Debug for ApproximateLocation
impl Debug for ApproximateLocation
Source§impl<'de> Deserialize<'de> for ApproximateLocation
impl<'de> Deserialize<'de> for ApproximateLocation
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 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