pub enum FrameError {
Parse(ParseError),
NoCompressionNegotiated,
FrameFromClient,
FrameFromServer,
VersionNotSupported(u8),
ConnectionClosed(usize, usize),
FrameDecompression,
FrameCompression,
StdIoError(Error),
TryFromPrimitiveError(TryFromPrimitiveError<ResponseOpcode>),
Lz4CompressError(CompressError),
Lz4DecompressError(DecompressError),
}
Variants§
Parse(ParseError)
NoCompressionNegotiated
FrameFromClient
FrameFromServer
VersionNotSupported(u8)
ConnectionClosed(usize, usize)
FrameDecompression
FrameCompression
StdIoError(Error)
TryFromPrimitiveError(TryFromPrimitiveError<ResponseOpcode>)
Lz4CompressError(CompressError)
Lz4DecompressError(DecompressError)
Trait Implementations§
Source§impl Debug for FrameError
impl Debug for FrameError
Source§impl Display for FrameError
impl Display for FrameError
Source§impl Error for FrameError
impl Error for FrameError
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<CompressError> for FrameError
impl From<CompressError> for FrameError
Source§fn from(source: CompressError) -> FrameError
fn from(source: CompressError) -> FrameError
Converts to this type from the input type.
Source§impl From<DecompressError> for FrameError
impl From<DecompressError> for FrameError
Source§fn from(source: DecompressError) -> FrameError
fn from(source: DecompressError) -> FrameError
Converts to this type from the input type.
Source§impl From<Error> for FrameError
impl From<Error> for FrameError
Source§fn from(source: Error) -> FrameError
fn from(source: Error) -> FrameError
Converts to this type from the input type.
Source§impl From<FrameError> for QueryError
impl From<FrameError> for QueryError
Source§fn from(frame_error: FrameError) -> QueryError
fn from(frame_error: FrameError) -> QueryError
Converts to this type from the input type.
Source§impl From<ParseError> for FrameError
impl From<ParseError> for FrameError
Source§fn from(source: ParseError) -> FrameError
fn from(source: ParseError) -> FrameError
Converts to this type from the input type.
Source§impl From<TryFromPrimitiveError<ResponseOpcode>> for FrameError
impl From<TryFromPrimitiveError<ResponseOpcode>> for FrameError
Source§fn from(source: TryFromPrimitiveError<ResponseOpcode>) -> FrameError
fn from(source: TryFromPrimitiveError<ResponseOpcode>) -> FrameError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FrameError
impl !RefUnwindSafe for FrameError
impl Send for FrameError
impl Sync for FrameError
impl Unpin for FrameError
impl !UnwindSafe for FrameError
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more