pub enum FixPrecisionVal {
Overflow,
Value(f64),
Underflow,
}Variants§
Trait Implementations§
Source§impl Clone for FixPrecisionVal
impl Clone for FixPrecisionVal
Source§fn clone(&self) -> FixPrecisionVal
fn clone(&self) -> FixPrecisionVal
Returns a copy 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 FixPrecisionVal
impl Debug for FixPrecisionVal
Source§impl PartialEq for FixPrecisionVal
impl PartialEq for FixPrecisionVal
impl StructuralPartialEq for FixPrecisionVal
Auto Trait Implementations§
impl Freeze for FixPrecisionVal
impl RefUnwindSafe for FixPrecisionVal
impl Send for FixPrecisionVal
impl Sync for FixPrecisionVal
impl Unpin for FixPrecisionVal
impl UnwindSafe for FixPrecisionVal
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