pub struct Bbox {
pub lon0: f64,
pub lat0: f64,
pub lon1: f64,
pub lat1: f64,
}Expand description
Geographic bounding box, (long, lat, long, lat) of the bottom-left and
top-right corners, exactly like upstream RidgeMap.__init__.
Fields§
§lon0: f64§lat0: f64§lon1: f64§lat1: f64Implementations§
Trait Implementations§
impl Copy for Bbox
Source§impl<'de> Deserialize<'de> for Bbox
impl<'de> Deserialize<'de> for Bbox
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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