pub enum MomentValue {
Value(f32),
BelowThreshold,
RangeFolded,
}Expand description
The data moment value for a product in a radial’s gate. The value may be a floating-point number or a special case such as “below threshold” or “range folded”.
Variants§
Value(f32)
The data moment value for a gate.
BelowThreshold
The value for this gate was below the signal threshold.
RangeFolded
The value for this gate exceeded the maximum unambiguous range.
Trait Implementations§
Source§impl Clone for MomentValue
impl Clone for MomentValue
Source§fn clone(&self) -> MomentValue
fn clone(&self) -> MomentValue
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 MomentValue
Source§impl Debug for MomentValue
impl Debug for MomentValue
Source§impl PartialEq for MomentValue
impl PartialEq for MomentValue
impl StructuralPartialEq for MomentValue
Auto Trait Implementations§
impl Freeze for MomentValue
impl RefUnwindSafe for MomentValue
impl Send for MomentValue
impl Sync for MomentValue
impl Unpin for MomentValue
impl UnsafeUnpin for MomentValue
impl UnwindSafe for MomentValue
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