pub struct BytesIOError {
pub value: BytesIOErrorValue,
}
Fields§
§value: BytesIOErrorValue
Trait Implementations§
Source§impl Debug for BytesIOError
impl Debug for BytesIOError
Source§impl Display for BytesIOError
impl Display for BytesIOError
Source§impl Fail for BytesIOError
impl Fail for BytesIOError
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<BytesIOError> for BytesWriteError
impl From<BytesIOError> for BytesWriteError
Source§fn from(error: BytesIOError) -> Self
fn from(error: BytesIOError) -> Self
Converts to this type from the input type.
Source§impl From<BytesIOErrorValue> for BytesIOError
impl From<BytesIOErrorValue> for BytesIOError
Source§fn from(val: BytesIOErrorValue) -> Self
fn from(val: BytesIOErrorValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BytesIOError
impl !RefUnwindSafe for BytesIOError
impl Send for BytesIOError
impl Sync for BytesIOError
impl Unpin for BytesIOError
impl !UnwindSafe for BytesIOError
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