pub struct Place {
pub id: i32,
pub urlid: String,
pub geo: Geo,
}Expand description
Information about a place.
Fields§
§id: i32Numerical ID of the referenced place.
urlid: StringTextual ID of the referenced place.
geo: GeoGeographical information about the location.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Place
impl<'de> Deserialize<'de> for Place
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 Place
impl RefUnwindSafe for Place
impl Send for Place
impl Sync for Place
impl Unpin for Place
impl UnwindSafe for Place
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