pub struct Coords {
pub country: String,
pub square: Square,
pub nearest_place: Option<String>,
pub coordinates: GeoCoords,
pub words: String,
pub language: String,
pub map: Url,
}
Fields§
§country: String
§square: Square
§nearest_place: Option<String>
§coordinates: GeoCoords
§words: String
§language: String
§map: Url
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Coords
impl<'de> Deserialize<'de> for Coords
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 Coords
impl RefUnwindSafe for Coords
impl Send for Coords
impl Sync for Coords
impl Unpin for Coords
impl UnwindSafe for Coords
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