pub enum StatisticType {
Series,
Average,
Minimum,
Maximum,
Range,
}Expand description
Report output statistic aggregation type (from TIMES STATISTIC).
Variants§
Series
Report all timesteps (default).
Average
Report time-averaged values.
Minimum
Report minimum values.
Maximum
Report maximum values.
Range
Report max − min.
Trait Implementations§
Source§impl Clone for StatisticType
impl Clone for StatisticType
Source§fn clone(&self) -> StatisticType
fn clone(&self) -> StatisticType
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 moreimpl Copy for StatisticType
Source§impl Debug for StatisticType
impl Debug for StatisticType
Source§impl Default for StatisticType
impl Default for StatisticType
Source§fn default() -> StatisticType
fn default() -> StatisticType
Returns the “default value” for a type. Read more
impl Eq for StatisticType
Source§impl PartialEq for StatisticType
impl PartialEq for StatisticType
Source§fn eq(&self, other: &StatisticType) -> bool
fn eq(&self, other: &StatisticType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatisticType
Auto Trait Implementations§
impl Freeze for StatisticType
impl RefUnwindSafe for StatisticType
impl Send for StatisticType
impl Sync for StatisticType
impl Unpin for StatisticType
impl UnsafeUnpin for StatisticType
impl UnwindSafe for StatisticType
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