pub enum WrapErrorFloatResolution {
CalculatedIsLessThanMinimum(f64),
CalculatedIsNotLessThanMinimumPlusRange(f64),
CyclesIsZero,
DeltaIsNegativeMinimum,
DeltaIsValue,
OffsetIsZero,
}
Variants§
CalculatedIsLessThanMinimum(f64)
CalculatedIsNotLessThanMinimumPlusRange(f64)
CyclesIsZero
DeltaIsNegativeMinimum
DeltaIsValue
OffsetIsZero
Trait Implementations§
Source§impl Debug for WrapErrorFloatResolution
impl Debug for WrapErrorFloatResolution
Source§impl PartialEq for WrapErrorFloatResolution
impl PartialEq for WrapErrorFloatResolution
Source§fn eq(&self, other: &WrapErrorFloatResolution) -> bool
fn eq(&self, other: &WrapErrorFloatResolution) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WrapErrorFloatResolution
Auto Trait Implementations§
impl Freeze for WrapErrorFloatResolution
impl RefUnwindSafe for WrapErrorFloatResolution
impl Send for WrapErrorFloatResolution
impl Sync for WrapErrorFloatResolution
impl Unpin for WrapErrorFloatResolution
impl UnwindSafe for WrapErrorFloatResolution
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