pub enum ValidationError {
Show 13 variants
ExponentAll1s,
MantissaAll0s,
InvalidBitLength,
ParseError,
EmptyValues,
InvalidSignBit,
InvalidExponent,
InvalidMantissa,
InvalidMSBMantissa,
InvalidLSBMantissa,
EmptySignBit,
EmptyExponent,
EmptyMantissa,
}Variants§
ExponentAll1s
MantissaAll0s
InvalidBitLength
ParseError
EmptyValues
InvalidSignBit
InvalidExponent
InvalidMantissa
InvalidMSBMantissa
InvalidLSBMantissa
EmptySignBit
EmptyExponent
EmptyMantissa
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidationError
impl RefUnwindSafe for ValidationError
impl Send for ValidationError
impl Sync for ValidationError
impl Unpin for ValidationError
impl UnwindSafe for ValidationError
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