Enum rs_es::units::GeoBox
[−]
[src]
pub enum GeoBox { Corners(Location, Location), Vertices(f64, f64, f64, f64), }
Representing a geographic box
Variants
Corners(Location, Location)
Vertices(f64, f64, f64, f64)
Trait Implementations
impl Debug for GeoBox
[src]
impl Default for GeoBox
[src]
impl Deserialize for GeoBox
[src]
fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error> where D: Deserializer
Deserialize this value given this Deserializer
.
impl From<(Location, Location)> for GeoBox
[src]
impl From<((f64, f64), (f64, f64))> for GeoBox
[src]
impl From<(f64, f64, f64, f64)> for GeoBox
[src]
impl Serialize for GeoBox
[src]
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer
Serializes this value into this serializer.