pub enum InitialCumulativeMonotonicValue {
Auto,
Drop,
Keep,
}Expand description
Controls how the first value of a cumulative monotonic sum is reported.
Variants§
Auto
Reports the first value when its series started after the translator process.
Drop
Always drops the first value.
Keep
Always reports the first value.
Trait Implementations§
Source§impl Clone for InitialCumulativeMonotonicValue
impl Clone for InitialCumulativeMonotonicValue
Source§fn clone(&self) -> InitialCumulativeMonotonicValue
fn clone(&self) -> InitialCumulativeMonotonicValue
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 InitialCumulativeMonotonicValue
impl Default for InitialCumulativeMonotonicValue
Source§fn default() -> InitialCumulativeMonotonicValue
fn default() -> InitialCumulativeMonotonicValue
Returns the “default value” for a type. Read more
Source§impl PartialEq for InitialCumulativeMonotonicValue
impl PartialEq for InitialCumulativeMonotonicValue
Source§fn eq(&self, other: &InitialCumulativeMonotonicValue) -> bool
fn eq(&self, other: &InitialCumulativeMonotonicValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InitialCumulativeMonotonicValue
impl Eq for InitialCumulativeMonotonicValue
impl StructuralPartialEq for InitialCumulativeMonotonicValue
Auto Trait Implementations§
impl Freeze for InitialCumulativeMonotonicValue
impl RefUnwindSafe for InitialCumulativeMonotonicValue
impl Send for InitialCumulativeMonotonicValue
impl Sync for InitialCumulativeMonotonicValue
impl Unpin for InitialCumulativeMonotonicValue
impl UnwindSafe for InitialCumulativeMonotonicValue
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