pub enum ReadPacketError {
Parse {
packet_id: u32,
packet_name: String,
backtrace: Box<Backtrace>,
source: BufReadError,
},
UnknownPacketId {
state_name: String,
id: u32,
},
ReadPacketId {
source: BufReadError,
},
Decompress {
source: DecompressionError,
},
FrameSplitter {
source: FrameSplitterError,
},
LeftoverData {
data: Vec<u8>,
packet_name: String,
},
IoError {
source: Error,
},
ConnectionClosed,
}Variants§
Parse
UnknownPacketId
ReadPacketId
Fields
§
source: BufReadErrorDecompress
Fields
§
source: DecompressionErrorFrameSplitter
Fields
§
source: FrameSplitterErrorLeftoverData
IoError
ConnectionClosed
Trait Implementations§
Source§impl Debug for ReadPacketError
impl Debug for ReadPacketError
Source§impl Display for ReadPacketError
impl Display for ReadPacketError
Source§impl Error for ReadPacketError
impl Error for ReadPacketError
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
Source§fn provide<'_request>(&'_request self, request: &mut Request<'_request>)
fn provide<'_request>(&'_request self, request: &mut Request<'_request>)
🔬This is a nightly-only experimental API. (
error_generic_member_access)Provides type-based access to context intended for error reports. 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<DecompressionError> for ReadPacketError
impl From<DecompressionError> for ReadPacketError
Source§fn from(source: DecompressionError) -> Self
fn from(source: DecompressionError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ReadPacketError
impl From<Error> for ReadPacketError
Source§impl From<FrameSplitterError> for ReadPacketError
impl From<FrameSplitterError> for ReadPacketError
Source§fn from(source: FrameSplitterError) -> Self
fn from(source: FrameSplitterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for ReadPacketError
impl !RefUnwindSafe for ReadPacketError
impl !UnwindSafe for ReadPacketError
impl Send for ReadPacketError
impl Sync for ReadPacketError
impl Unpin for ReadPacketError
impl UnsafeUnpin for ReadPacketError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read moreSource§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.