pub struct AstronomyLocation {
pub id: String,
pub geo: Geo,
pub matchparam: String,
pub astronomy: AstronomyDetails,
}Expand description
Information about requested location and astronomical objects.
Fields§
§id: StringThe id of the location.
geo: GeoGeographical information about the location.
matchparam: StringThe part of the queried place that this location matches.
astronomy: AstronomyDetailsRequested astronomical information.
Trait Implementations§
Source§impl Debug for AstronomyLocation
impl Debug for AstronomyLocation
Source§impl<'de> Deserialize<'de> for AstronomyLocation
impl<'de> Deserialize<'de> for AstronomyLocation
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 AstronomyLocation
impl RefUnwindSafe for AstronomyLocation
impl Send for AstronomyLocation
impl Sync for AstronomyLocation
impl Unpin for AstronomyLocation
impl UnwindSafe for AstronomyLocation
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