pub enum ContinuePacketError {
DataPartLength,
ReadFullDataPart,
Flags(FlagsError),
Io(Error),
}Variants§
Trait Implementations§
Source§impl Debug for ContinuePacketError
impl Debug for ContinuePacketError
Source§impl Display for ContinuePacketError
impl Display for ContinuePacketError
Source§impl Error for ContinuePacketError
impl Error for ContinuePacketError
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<ContinuePacketError> for StreamError
impl From<ContinuePacketError> for StreamError
Source§fn from(source: ContinuePacketError) -> Self
fn from(source: ContinuePacketError) -> Self
Converts to this type from the input type.
Source§impl From<ContinuePacketError> for StreamError
impl From<ContinuePacketError> for StreamError
Source§fn from(source: ContinuePacketError) -> Self
fn from(source: ContinuePacketError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ContinuePacketError
impl From<Error> for ContinuePacketError
Source§impl From<FlagsError> for ContinuePacketError
impl From<FlagsError> for ContinuePacketError
Source§fn from(source: FlagsError) -> Self
fn from(source: FlagsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ContinuePacketError
impl !RefUnwindSafe for ContinuePacketError
impl Send for ContinuePacketError
impl Sync for ContinuePacketError
impl Unpin for ContinuePacketError
impl !UnwindSafe for ContinuePacketError
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