pub enum Algorithm {
absolute,
incremental,
percentage_of_absolute_row,
percentage_of_incremental_row,
}
Expand description
Interpretion of sequential values for a given Dimension.
Variants§
absolute
The value is drawn as-is (interpolated to second boundary). This is the the default behavior.
incremental
The value increases over time, the difference from the last value is presented in the chart, the server interpolates the value and calculates a per second figure.
percentage_of_absolute_row
The % of this value compared to the total of all dimensions.
percentage_of_incremental_row
The % of this value compared to the incremental total of all dimensions.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Algorithm
impl RefUnwindSafe for Algorithm
impl Send for Algorithm
impl Sync for Algorithm
impl Unpin for Algorithm
impl UnwindSafe for Algorithm
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