pub struct Area {
pub lon: (f64, f64),
pub lat: (f64, f64),
}Expand description
The corners of a box, in degrees.
Fields§
§lon: (f64, f64)The lowest and highest longitude the box covers.
lat: (f64, f64)The lowest and highest latitude the box covers.
Implementations§
Trait Implementations§
impl Copy for Area
impl StructuralPartialEq for Area
Auto Trait Implementations§
impl Freeze for Area
impl RefUnwindSafe for Area
impl Send for Area
impl Sync for Area
impl Unpin for Area
impl UnsafeUnpin 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