pub enum BinaryFormatErr {
UnsupportedVersion,
MalformedDataTable(&'static str),
TooShort,
}Expand description
A binary format error
Variants§
Trait Implementations§
Source§impl Debug for BinaryFormatErr
impl Debug for BinaryFormatErr
Source§impl PartialEq for BinaryFormatErr
impl PartialEq for BinaryFormatErr
impl StructuralPartialEq for BinaryFormatErr
Auto Trait Implementations§
impl Freeze for BinaryFormatErr
impl RefUnwindSafe for BinaryFormatErr
impl Send for BinaryFormatErr
impl Sync for BinaryFormatErr
impl Unpin for BinaryFormatErr
impl UnwindSafe for BinaryFormatErr
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