pub struct BBox {
pub lower_left_latitude: f64,
pub lower_left_longitude: f64,
pub upper_right_latitude: f64,
pub upper_right_longitude: f64,
}Expand description
A geographic bounding box in decimal degrees relative to the international reference meridian.
WKT2 keyword: BBOX.
Fields§
§lower_left_latitude: f64The southern latitude boundary (-90 to +90).
lower_left_longitude: f64The western longitude boundary (-180 to +180).
upper_right_latitude: f64The northern latitude boundary (-90 to +90).
upper_right_longitude: f64The eastern longitude boundary (-180 to +180). May be less than
lower_left_longitude when the area crosses the 180 degree meridian.
Trait Implementations§
impl StructuralPartialEq for BBox
Auto Trait Implementations§
impl Freeze for BBox
impl RefUnwindSafe for BBox
impl Send for BBox
impl Sync for BBox
impl Unpin for BBox
impl UnsafeUnpin for BBox
impl UnwindSafe for BBox
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