pub enum Float32DecodeError {
InvalidSize {
len: usize,
},
NonFinite,
}Expand description
Float32DecodeError
Variants§
Trait Implementations§
Source§impl Debug for Float32DecodeError
impl Debug for Float32DecodeError
Source§impl Display for Float32DecodeError
impl Display for Float32DecodeError
Source§impl Error for Float32DecodeError
impl Error for Float32DecodeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Float32DecodeError
impl RefUnwindSafe for Float32DecodeError
impl Send for Float32DecodeError
impl Sync for Float32DecodeError
impl Unpin for Float32DecodeError
impl UnsafeUnpin for Float32DecodeError
impl UnwindSafe for Float32DecodeError
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