pub struct GeoLocationBox {
pub east_bound_longitude: f64,
pub west_bound_longitude: f64,
pub south_bound_latitude: f64,
pub north_bound_latitude: f64,
}Fields§
§east_bound_longitude: f64§west_bound_longitude: f64§south_bound_latitude: f64§north_bound_latitude: f64Implementations§
Trait Implementations§
Source§impl Clone for GeoLocationBox
impl Clone for GeoLocationBox
Source§fn clone(&self) -> GeoLocationBox
fn clone(&self) -> GeoLocationBox
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GeoLocationBox
impl Debug for GeoLocationBox
Source§impl Default for GeoLocationBox
impl Default for GeoLocationBox
Source§fn default() -> GeoLocationBox
fn default() -> GeoLocationBox
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeoLocationBox
impl<'de> Deserialize<'de> for GeoLocationBox
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
Source§impl PartialEq for GeoLocationBox
impl PartialEq for GeoLocationBox
Source§fn eq(&self, other: &GeoLocationBox) -> bool
fn eq(&self, other: &GeoLocationBox) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GeoLocationBox
impl Serialize for GeoLocationBox
impl StructuralPartialEq for GeoLocationBox
Auto Trait Implementations§
impl Freeze for GeoLocationBox
impl RefUnwindSafe for GeoLocationBox
impl Send for GeoLocationBox
impl Sync for GeoLocationBox
impl Unpin for GeoLocationBox
impl UnsafeUnpin for GeoLocationBox
impl UnwindSafe for GeoLocationBox
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