pub enum StatisticsValue {
UInt(u32),
Double(f64),
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for StatisticsValue
impl Clone for StatisticsValue
Source§fn clone(&self) -> StatisticsValue
fn clone(&self) -> StatisticsValue
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 moreAuto Trait Implementations§
impl Freeze for StatisticsValue
impl RefUnwindSafe for StatisticsValue
impl Send for StatisticsValue
impl Sync for StatisticsValue
impl Unpin for StatisticsValue
impl UnsafeUnpin for StatisticsValue
impl UnwindSafe for StatisticsValue
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