pub enum WrapErrorInvalidArgument {
MinimumIsInfinite(f64),
MinimumIsNotANumber,
RangeIsInfinite(f64),
RangeIsNonPositive(f64),
RangeIsNotANumber,
ValueIsInfinite(f64),
ValueIsNotANumber,
}
Variants
MinimumIsInfinite(f64)
MinimumIsNotANumber
RangeIsInfinite(f64)
RangeIsNonPositive(f64)
RangeIsNotANumber
ValueIsInfinite(f64)
ValueIsNotANumber
Trait Implementations
sourceimpl Debug for WrapErrorInvalidArgument
impl Debug for WrapErrorInvalidArgument
sourceimpl PartialEq<WrapErrorInvalidArgument> for WrapErrorInvalidArgument
impl PartialEq<WrapErrorInvalidArgument> for WrapErrorInvalidArgument
sourcefn eq(&self, other: &WrapErrorInvalidArgument) -> bool
fn eq(&self, other: &WrapErrorInvalidArgument) -> bool
impl StructuralPartialEq for WrapErrorInvalidArgument
Auto Trait Implementations
impl RefUnwindSafe for WrapErrorInvalidArgument
impl Send for WrapErrorInvalidArgument
impl Sync for WrapErrorInvalidArgument
impl Unpin for WrapErrorInvalidArgument
impl UnwindSafe for WrapErrorInvalidArgument
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