Enum quicr_core::ConnectionError [−][src]
pub enum ConnectionError {
VersionMismatch,
TransportError {
error_code: TransportError,
},
ConnectionClosed {
reason: ConnectionClose,
},
ApplicationClosed {
reason: ApplicationClose,
},
Reset,
TimedOut,
}Reasons why a connection might be lost.
Variants
VersionMismatchThe peer doesn't implement any supported version.
TransportErrorThe peer violated the QUIC specification as understood by this implementation.
Fields of TransportError
error_code: TransportError |
ConnectionClosedThe peer's QUIC stack aborted the connection automatically.
Fields of ConnectionClosed
reason: ConnectionClose |
ApplicationClosedThe peer closed the connection.
Fields of ApplicationClosed
reason: ApplicationClose |
ResetThe peer is unable to continue processing this connection, usually due to having restarted.
TimedOutThe peer has become unreachable.
Trait Implementations
impl Debug for ConnectionError[src]
impl Debug for ConnectionErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for ConnectionError[src]
impl Clone for ConnectionErrorfn clone(&self) -> ConnectionError[src]
fn clone(&self) -> ConnectionErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl From<TransportError> for ConnectionError[src]
impl From<TransportError> for ConnectionErrorfn from(x: TransportError) -> Self[src]
fn from(x: TransportError) -> SelfPerforms the conversion.
impl From<ConnectionError> for Error[src]
impl From<ConnectionError> for Errorfn from(x: ConnectionError) -> Error[src]
fn from(x: ConnectionError) -> ErrorPerforms the conversion.
Auto Trait Implementations
impl Send for ConnectionError
impl Send for ConnectionErrorimpl Sync for ConnectionError
impl Sync for ConnectionError