pub enum StatValue {
Float(f32),
Unsigned(u32),
Signed(i32),
}Variants§
Trait Implementations§
impl StructuralPartialEq for StatValue
Auto Trait Implementations§
impl Freeze for StatValue
impl RefUnwindSafe for StatValue
impl Send for StatValue
impl Sync for StatValue
impl Unpin for StatValue
impl UnsafeUnpin for StatValue
impl UnwindSafe for StatValue
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