pub enum BinaryReadError {
NotEnoughRemainingBytes,
BlobBytesExceedMaxSize(usize, usize),
StringCharsExceedMaxSize(usize, usize),
DidntFullyConsume(usize),
}Variants§
NotEnoughRemainingBytes
BlobBytesExceedMaxSize(usize, usize)
StringCharsExceedMaxSize(usize, usize)
DidntFullyConsume(usize)
Trait Implementations§
Source§impl Debug for BinaryReadError
impl Debug for BinaryReadError
Source§impl Display for BinaryReadError
impl Display for BinaryReadError
Source§impl Error for BinaryReadError
impl Error for BinaryReadError
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 BinaryReadError
impl RefUnwindSafe for BinaryReadError
impl Send for BinaryReadError
impl Sync for BinaryReadError
impl Unpin for BinaryReadError
impl UnwindSafe for BinaryReadError
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