pub enum VolumeAnomaly {
Subdued,
Normal,
Elevated,
}Expand description
Classification of volume activity relative to rolling baseline.
Variants§
Subdued
Volume is significantly below the rolling average (ratio < 0.5).
Normal
Volume is within the normal range.
Elevated
Volume is significantly above the rolling average (ratio >= elevated_threshold).
Trait Implementations§
Source§impl Clone for VolumeAnomaly
impl Clone for VolumeAnomaly
Source§fn clone(&self) -> VolumeAnomaly
fn clone(&self) -> VolumeAnomaly
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 Debug for VolumeAnomaly
impl Debug for VolumeAnomaly
Source§impl Display for VolumeAnomaly
impl Display for VolumeAnomaly
Source§impl PartialEq for VolumeAnomaly
impl PartialEq for VolumeAnomaly
impl Eq for VolumeAnomaly
impl StructuralPartialEq for VolumeAnomaly
Auto Trait Implementations§
impl Freeze for VolumeAnomaly
impl RefUnwindSafe for VolumeAnomaly
impl Send for VolumeAnomaly
impl Sync for VolumeAnomaly
impl Unpin for VolumeAnomaly
impl UnsafeUnpin for VolumeAnomaly
impl UnwindSafe for VolumeAnomaly
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