pub struct BytesReadError {
pub value: BytesReadErrorValue,
}
Fields§
§value: BytesReadErrorValue
Trait Implementations§
Source§impl Debug for BytesReadError
impl Debug for BytesReadError
Source§impl Display for BytesReadError
impl Display for BytesReadError
Source§impl Fail for BytesReadError
impl Fail for BytesReadError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreSource§impl From<BytesIOError> for BytesReadError
impl From<BytesIOError> for BytesReadError
Source§fn from(error: BytesIOError) -> Self
fn from(error: BytesIOError) -> Self
Converts to this type from the input type.
Source§impl From<BytesReadError> for BitError
impl From<BytesReadError> for BitError
Source§fn from(error: BytesReadError) -> Self
fn from(error: BytesReadError) -> Self
Converts to this type from the input type.
Source§impl From<BytesReadErrorValue> for BytesReadError
impl From<BytesReadErrorValue> for BytesReadError
Source§fn from(val: BytesReadErrorValue) -> Self
fn from(val: BytesReadErrorValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BytesReadError
impl !RefUnwindSafe for BytesReadError
impl Send for BytesReadError
impl Sync for BytesReadError
impl Unpin for BytesReadError
impl !UnwindSafe for BytesReadError
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