pub enum PlotThreshold {
GreaterThan(f64),
LessThan(f64),
}Expand description
A shaded region appearing on the plot to indicate values that would trigger an alert
Variants§
GreaterThan(f64)
Shade values greater than this threshold
LessThan(f64)
Shade values less than this threshold
Auto Trait Implementations§
impl Freeze for PlotThreshold
impl RefUnwindSafe for PlotThreshold
impl Send for PlotThreshold
impl Sync for PlotThreshold
impl Unpin for PlotThreshold
impl UnwindSafe for PlotThreshold
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more