Struct google_youtube3::api::GeoPoint
source · pub struct GeoPoint {
pub altitude: Option<f64>,
pub latitude: Option<f64>,
pub longitude: Option<f64>,
}
Expand description
Geographical coordinates of a point, in WGS84.
This type is not used in any activity, and only used as part of another schema.
Fields§
§altitude: Option<f64>
Altitude above the reference ellipsoid, in meters.
latitude: Option<f64>
Latitude in degrees.
longitude: Option<f64>
Longitude in degrees.
Trait Implementations§
source§impl<'de> Deserialize<'de> for GeoPoint
impl<'de> Deserialize<'de> for GeoPoint
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
impl Part for GeoPoint
Auto Trait Implementations§
impl RefUnwindSafe for GeoPoint
impl Send for GeoPoint
impl Sync for GeoPoint
impl Unpin for GeoPoint
impl UnwindSafe for GeoPoint
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