Struct tile_grid::BoundingBox2D
source · pub struct BoundingBox2D {
pub lower_left: [f64; 2],
pub upper_right: [f64; 2],
pub crs: Option<Crs>,
pub ordered_axes: Option<OrderedAxes>,
}Expand description
Minimum bounding rectangle surrounding a 2D resource in the CRS indicated elsewere
Fields§
§lower_left: [f64; 2]§upper_right: [f64; 2]§crs: Option<Crs>§ordered_axes: Option<OrderedAxes>Trait Implementations§
source§impl Clone for BoundingBox2D
impl Clone for BoundingBox2D
source§fn clone(&self) -> BoundingBox2D
fn clone(&self) -> BoundingBox2D
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for BoundingBox2D
impl Debug for BoundingBox2D
source§impl<'de> Deserialize<'de> for BoundingBox2D
impl<'de> Deserialize<'de> for BoundingBox2D
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
Auto Trait Implementations§
impl RefUnwindSafe for BoundingBox2D
impl Send for BoundingBox2D
impl Sync for BoundingBox2D
impl Unpin for BoundingBox2D
impl UnwindSafe for BoundingBox2D
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