pub enum Float64DecodeError {
InvalidSize {
len: usize,
},
NonFinite,
}Variants§
Trait Implementations§
Source§impl Debug for Float64DecodeError
impl Debug for Float64DecodeError
Source§impl Display for Float64DecodeError
impl Display for Float64DecodeError
Source§impl Error for Float64DecodeError
impl Error for Float64DecodeError
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 Float64DecodeError
impl RefUnwindSafe for Float64DecodeError
impl Send for Float64DecodeError
impl Sync for Float64DecodeError
impl Unpin for Float64DecodeError
impl UnsafeUnpin for Float64DecodeError
impl UnwindSafe for Float64DecodeError
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