pub struct Place {
pub id: String,
pub place_type: String,
pub name: String,
pub full_name: String,
pub country_code: String,
pub country: String,
pub bounding_box: BoundingBox,
}
Fields§
§id: String
§place_type: String
§name: String
§full_name: String
§country_code: String
§country: String
§bounding_box: BoundingBox
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