pub enum InputPacketBytesError {
NoBytes(usize),
Custom(CustomError),
}Variants§
NoBytes(usize)
Custom(CustomError)
Trait Implementations§
Source§impl Debug for InputPacketBytesError
impl Debug for InputPacketBytesError
Source§impl Display for InputPacketBytesError
impl Display for InputPacketBytesError
Source§impl Error for InputPacketBytesError
impl Error for InputPacketBytesError
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()
Source§impl From<CustomError> for InputPacketBytesError
impl From<CustomError> for InputPacketBytesError
Source§fn from(err: CustomError) -> InputPacketBytesError
fn from(err: CustomError) -> InputPacketBytesError
Converts to this type from the input type.
Source§impl From<InputPacketBytesError> for PacketReadableError
impl From<InputPacketBytesError> for PacketReadableError
Source§fn from(err: InputPacketBytesError) -> PacketReadableError
fn from(err: InputPacketBytesError) -> PacketReadableError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InputPacketBytesError
impl !RefUnwindSafe for InputPacketBytesError
impl Send for InputPacketBytesError
impl Sync for InputPacketBytesError
impl Unpin for InputPacketBytesError
impl !UnwindSafe for InputPacketBytesError
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