Struct puffin::fuzzer::stats_stage::MinMaxMean
source · pub struct MinMaxMean {
pub name: &'static str,
min_set: AtomicBool,
min: AtomicUsize,
max_set: AtomicBool,
max: AtomicUsize,
mean_set: AtomicBool,
mean: AtomicUsize,
}
Fields§
§name: &'static str
§min_set: AtomicBool
§min: AtomicUsize
§max_set: AtomicBool
§max: AtomicUsize
§mean_set: AtomicBool
§mean: AtomicUsize
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for MinMaxMean
impl RefUnwindSafe for MinMaxMean
impl Send for MinMaxMean
impl Sync for MinMaxMean
impl Unpin for MinMaxMean
impl UnwindSafe for MinMaxMean
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
§impl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [
TupleList
], of an [Prepend::prepend()
] call,
including the prepended entry.