pub struct BoundingBox {
pub south_west: LatLon,
pub north_east: LatLon,
}
Expand description
A bounding box, described by two corner coordinates: south_west (min) and north_east (max). Semantically, south_west’s coordinates are always smaller than north_east’s, though this constraint is not enforced.
Fields§
§south_west: LatLon
§north_east: LatLon
Trait Implementations§
Source§impl Debug for BoundingBox
impl Debug for BoundingBox
Auto Trait Implementations§
impl Freeze for BoundingBox
impl RefUnwindSafe for BoundingBox
impl Send for BoundingBox
impl Sync for BoundingBox
impl Unpin for BoundingBox
impl UnwindSafe for BoundingBox
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