Enum litep2p::yamux::ConnectionError
source · #[non_exhaustive]pub enum ConnectionError {
Io(Error),
Decode(FrameDecodeError),
NoMoreStreamIds,
Closed,
TooManyStreams,
}
Expand description
The various error cases a connection may encounter.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Io(Error)
An underlying I/O error occured.
Decode(FrameDecodeError)
Decoding a Yamux message frame failed.
NoMoreStreamIds
The whole range of stream IDs has been used up.
Closed
An operation fails because the connection is closed.
TooManyStreams
Too many streams are open, so no further ones can be opened at this time.
Trait Implementations§
source§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)>
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<Canceled> for ConnectionError
impl From<Canceled> for ConnectionError
source§impl From<Error> for ConnectionError
impl From<Error> for ConnectionError
source§impl From<FrameDecodeError> for ConnectionError
impl From<FrameDecodeError> for ConnectionError
source§fn from(e: FrameDecodeError) -> Self
fn from(e: FrameDecodeError) -> Self
Converts to this type from the input type.
source§impl From<SendError> for ConnectionError
impl From<SendError> 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