pub enum ConnectionError {
Show 15 variants
GoAway(Reason),
UnknownStream(&'static str),
Encoder(EncoderError),
Decoder(FrameError),
StreamClosed(StreamId, &'static str),
InvalidStreamId(&'static str),
UnexpectedSettingsAck,
MissingPseudo(&'static str),
UnexpectedPseudo(&'static str),
ZeroWindowUpdateValue,
WindowValueOverflow,
ConcurrencyOverflow,
StreamResetsLimit,
KeepaliveTimeout,
ReadTimeout,
}
Variants§
GoAway(Reason)
UnknownStream(&'static str)
Encoder(EncoderError)
Decoder(FrameError)
StreamClosed(StreamId, &'static str)
InvalidStreamId(&'static str)
An invalid stream identifier was provided
UnexpectedSettingsAck
MissingPseudo(&'static str)
Missing pseudo header
UnexpectedPseudo(&'static str)
Missing pseudo header
ZeroWindowUpdateValue
Window update value is zero
WindowValueOverflow
ConcurrencyOverflow
StreamResetsLimit
KeepaliveTimeout
Keep-alive timeout
ReadTimeout
Read timeout
Implementations§
Trait Implementations§
Source§impl Clone for ConnectionError
impl Clone for ConnectionError
Source§fn clone(&self) -> ConnectionError
fn clone(&self) -> ConnectionError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConnectionError
impl Debug for ConnectionError
Source§impl Display for ConnectionError
impl Display for ConnectionError
Source§impl Error for ConnectionError
impl Error for ConnectionError
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<ConnectionError> for ClientError
impl From<ConnectionError> for ClientError
Source§fn from(err: ConnectionError) -> Self
fn from(err: ConnectionError) -> Self
Converts to this type from the input type.
Source§impl From<ConnectionError> for OperationError
impl From<ConnectionError> for OperationError
Source§fn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
Source§impl From<EncoderError> for ConnectionError
impl From<EncoderError> for ConnectionError
Source§fn from(source: EncoderError) -> Self
fn from(source: EncoderError) -> Self
Converts to this type from the input type.
Source§impl From<FrameError> for ConnectionError
impl From<FrameError> for ConnectionError
Source§fn from(source: FrameError) -> Self
fn from(source: FrameError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ConnectionError
impl PartialEq for ConnectionError
impl Copy for ConnectionError
impl Eq for ConnectionError
impl StructuralPartialEq for ConnectionError
Auto Trait Implementations§
impl Freeze for ConnectionError
impl RefUnwindSafe for ConnectionError
impl Send for ConnectionError
impl Sync for ConnectionError
impl Unpin for ConnectionError
impl UnwindSafe for ConnectionError
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