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§
Source§impl Debug for WrapErrorInvalidArgument
impl Debug for WrapErrorInvalidArgument
Source§impl PartialEq for WrapErrorInvalidArgument
impl PartialEq for WrapErrorInvalidArgument
Source§fn eq(&self, other: &WrapErrorInvalidArgument) -> bool
fn eq(&self, other: &WrapErrorInvalidArgument) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WrapErrorInvalidArgument
Auto Trait Implementations§
impl Freeze for WrapErrorInvalidArgument
impl RefUnwindSafe for WrapErrorInvalidArgument
impl Send for WrapErrorInvalidArgument
impl Sync for WrapErrorInvalidArgument
impl Unpin for WrapErrorInvalidArgument
impl UnwindSafe for WrapErrorInvalidArgument
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