pub struct BoundingBox {
pub minimum_latitude: Option<f64>,
pub maximum_latitude: Option<f64>,
pub minimum_longitude: Option<f64>,
pub maximum_longitude: Option<f64>,
}Expand description
BoundingBox : Bounding box of the dataset when it was first added to the catalog.
Fields§
§minimum_latitude: Option<f64>The minimum latitude for the dataset bounding box.
maximum_latitude: Option<f64>The maximum latitude for the dataset bounding box.
minimum_longitude: Option<f64>The minimum longitude for the dataset bounding box.
maximum_longitude: Option<f64>The maximum longitude for the dataset bounding box.
Implementations§
Source§impl BoundingBox
impl BoundingBox
Sourcepub fn new() -> BoundingBox
pub fn new() -> BoundingBox
Bounding box of the dataset when it was first added to the catalog.
Trait Implementations§
Source§impl Clone for BoundingBox
impl Clone for BoundingBox
Source§fn clone(&self) -> BoundingBox
fn clone(&self) -> BoundingBox
Returns a duplicate 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 BoundingBox
impl Debug for BoundingBox
Source§impl Default for BoundingBox
impl Default for BoundingBox
Source§fn default() -> BoundingBox
fn default() -> BoundingBox
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BoundingBox
impl<'de> Deserialize<'de> for BoundingBox
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
Source§impl PartialEq for BoundingBox
impl PartialEq for BoundingBox
Source§impl Serialize for BoundingBox
impl Serialize for BoundingBox
impl StructuralPartialEq 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