Enum yamux::ConnectionError [−][src]
#[non_exhaustive] pub enum ConnectionError { Io(Error), Decode(FrameDecodeError), NoMoreStreamIds, Closed, TooManyStreams, }
The various error cases a connection may encounter.
Variants (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.
The whole range of stream IDs has been used up.
An operation fails because the connection is closed.
Too many streams are open, so no further ones can be opened at this time.
Trait Implementations
impl Error for ConnectionError
[src]
impl Error for ConnectionError
[src]impl From<FrameDecodeError> for ConnectionError
[src]
impl From<FrameDecodeError> for ConnectionError
[src]