pub enum Aggregation {
MinAggregation(Box<MinAggregation>),
MaxAggregation(Box<MaxAggregation>),
FirstAggregation(Box<FirstAggregation>),
LastAggregation(Box<LastAggregation>),
MeanAggregation(Box<MeanAggregation>),
SumAggregation(Box<SumAggregation>),
CountAggregation(Box<CountAggregation>),
PercentileEstimateAggregation(Box<PercentileEstimateAggregation>),
}Expand description
Aggregation : Aggregation methods for TemporalRasterAggregation. Available variants are min, max, first, last, mean, sum, count, and percentileEstimate. Encountering NO DATA makes the aggregation result NO DATA unless ignoreNoData is true.
Aggregation methods for TemporalRasterAggregation. Available variants are min, max, first, last, mean, sum, count, and percentileEstimate. Encountering NO DATA makes the aggregation result NO DATA unless ignoreNoData is true.
Variants§
MinAggregation(Box<MinAggregation>)
MaxAggregation(Box<MaxAggregation>)
FirstAggregation(Box<FirstAggregation>)
LastAggregation(Box<LastAggregation>)
MeanAggregation(Box<MeanAggregation>)
SumAggregation(Box<SumAggregation>)
CountAggregation(Box<CountAggregation>)
PercentileEstimateAggregation(Box<PercentileEstimateAggregation>)
Trait Implementations§
Source§impl Clone for Aggregation
impl Clone for Aggregation
Source§fn clone(&self) -> Aggregation
fn clone(&self) -> Aggregation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Aggregation
impl Debug for Aggregation
Source§impl Default for Aggregation
impl Default for Aggregation
Source§impl<'de> Deserialize<'de> for Aggregation
impl<'de> Deserialize<'de> for Aggregation
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 Aggregation
impl PartialEq for Aggregation
Source§fn eq(&self, other: &Aggregation) -> bool
fn eq(&self, other: &Aggregation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Aggregation
impl Serialize for Aggregation
impl StructuralPartialEq for Aggregation
Auto Trait Implementations§
impl Freeze for Aggregation
impl RefUnwindSafe for Aggregation
impl Send for Aggregation
impl Sync for Aggregation
impl Unpin for Aggregation
impl UnsafeUnpin for Aggregation
impl UnwindSafe for Aggregation
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