pub struct RasterToDatasetQueryRectangle {
pub spatial_bounds: Box<SpatialPartition2D>,
pub time_interval: Box<TimeInterval>,
}Expand description
RasterToDatasetQueryRectangle : A spatio-temporal rectangle with a specified resolution
Fields§
§spatial_bounds: Box<SpatialPartition2D>§time_interval: Box<TimeInterval>Implementations§
Source§impl RasterToDatasetQueryRectangle
impl RasterToDatasetQueryRectangle
Sourcepub fn new(
spatial_bounds: SpatialPartition2D,
time_interval: TimeInterval,
) -> RasterToDatasetQueryRectangle
pub fn new( spatial_bounds: SpatialPartition2D, time_interval: TimeInterval, ) -> RasterToDatasetQueryRectangle
A spatio-temporal rectangle with a specified resolution
Trait Implementations§
Source§impl Clone for RasterToDatasetQueryRectangle
impl Clone for RasterToDatasetQueryRectangle
Source§fn clone(&self) -> RasterToDatasetQueryRectangle
fn clone(&self) -> RasterToDatasetQueryRectangle
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 Default for RasterToDatasetQueryRectangle
impl Default for RasterToDatasetQueryRectangle
Source§fn default() -> RasterToDatasetQueryRectangle
fn default() -> RasterToDatasetQueryRectangle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RasterToDatasetQueryRectangle
impl<'de> Deserialize<'de> for RasterToDatasetQueryRectangle
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 RasterToDatasetQueryRectangle
impl PartialEq for RasterToDatasetQueryRectangle
Source§fn eq(&self, other: &RasterToDatasetQueryRectangle) -> bool
fn eq(&self, other: &RasterToDatasetQueryRectangle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RasterToDatasetQueryRectangle
Auto Trait Implementations§
impl Freeze for RasterToDatasetQueryRectangle
impl RefUnwindSafe for RasterToDatasetQueryRectangle
impl Send for RasterToDatasetQueryRectangle
impl Sync for RasterToDatasetQueryRectangle
impl Unpin for RasterToDatasetQueryRectangle
impl UnsafeUnpin for RasterToDatasetQueryRectangle
impl UnwindSafe for RasterToDatasetQueryRectangle
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