pub struct Area {
pub north: f64,
pub south: f64,
pub east: f64,
pub west: f64,
}Expand description
The bounding box of an area of use
In the case of an area of use crossing the antimeridian (longitude +/- 180 degrees),
west must be greater than east.
Fields§
§north: f64§south: f64§east: f64§west: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Area
impl RefUnwindSafe for Area
impl Send for Area
impl Sync for Area
impl Unpin for Area
impl UnwindSafe for Area
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