pub struct Bbox {
pub south: f64,
pub west: f64,
pub north: f64,
pub east: f64,
}Expand description
A geographic bounding box defined by two latitudes and two longitudes. Used to distinguish points inside and outside the box.
Fields§
§south: f64The latitude of the southern edge of the bounding box.
west: f64The longitude of the western edge of the bounding box.
north: f64The latitude of the northern edge of the bounding box.
east: f64The longitude of the eastern edge of the bounding box.
Implementations§
Trait Implementations§
Source§impl OverpassQL for Bbox
impl OverpassQL for Bbox
impl Copy 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