pub struct MapBoxBounds {
pub west: f64,
pub south: f64,
pub east: f64,
pub north: f64,
}Expand description
MapBox bounding box: [west, south, east, north].
Fields§
§west: f64§south: f64§east: f64§north: f64Trait Implementations§
Source§impl Clone for MapBoxBounds
impl Clone for MapBoxBounds
Source§fn clone(&self) -> MapBoxBounds
fn clone(&self) -> MapBoxBounds
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 MapBoxBounds
impl Debug for MapBoxBounds
Source§impl Default for MapBoxBounds
impl Default for MapBoxBounds
Source§fn default() -> MapBoxBounds
fn default() -> MapBoxBounds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MapBoxBounds
impl<'de> Deserialize<'de> for MapBoxBounds
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 MapBoxBounds
impl RefUnwindSafe for MapBoxBounds
impl Send for MapBoxBounds
impl Sync for MapBoxBounds
impl Unpin for MapBoxBounds
impl UnsafeUnpin for MapBoxBounds
impl UnwindSafe for MapBoxBounds
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