pub enum WrapErrorFloatResolution {
CalculatedIsLessThanMinimum(f64),
CalculatedIsNotLessThanMinimumPlusRange(f64),
CyclesIsZero,
DeltaIsNegativeMinimum,
DeltaIsValue,
OffsetIsZero,
}
Variants
CalculatedIsLessThanMinimum(f64)
CalculatedIsNotLessThanMinimumPlusRange(f64)
CyclesIsZero
DeltaIsNegativeMinimum
DeltaIsValue
OffsetIsZero
Trait Implementations
sourceimpl Debug for WrapErrorFloatResolution
impl Debug for WrapErrorFloatResolution
sourceimpl PartialEq<WrapErrorFloatResolution> for WrapErrorFloatResolution
impl PartialEq<WrapErrorFloatResolution> for WrapErrorFloatResolution
sourcefn eq(&self, other: &WrapErrorFloatResolution) -> bool
fn eq(&self, other: &WrapErrorFloatResolution) -> bool
impl StructuralPartialEq for WrapErrorFloatResolution
Auto Trait Implementations
impl RefUnwindSafe for WrapErrorFloatResolution
impl Send for WrapErrorFloatResolution
impl Sync for WrapErrorFloatResolution
impl Unpin for WrapErrorFloatResolution
impl UnwindSafe for WrapErrorFloatResolution
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more