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
VersionMismatch
The peer doesn't implement any supported version.
TransportError
The peer violated the QUIC specification as understood by this implementation.
Fields of TransportError
error_code: TransportError |
ConnectionClosed
The peer's QUIC stack aborted the connection automatically.
Fields of ConnectionClosed
reason: ConnectionClose |
ApplicationClosed
The peer closed the connection.
Fields of ApplicationClosed
reason: ApplicationClose |
Reset
The peer is unable to continue processing this connection, usually due to having restarted.
TimedOut
The peer has become unreachable.
Trait Implementations
impl Debug for ConnectionError
[src]
impl Debug for ConnectionError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for ConnectionError
[src]
impl Clone for ConnectionError
fn clone(&self) -> ConnectionError
[src]
fn clone(&self) -> ConnectionError
Returns 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)
Performs copy-assignment from source
. Read more
impl Fail for ConnectionError
[src]
impl Fail for ConnectionError
fn cause(&self) -> Option<&Fail>
[src]
fn cause(&self) -> Option<&Fail>
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
[src]
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self>
[src]
fn compat(self) -> Compat<Self>
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
ⓘImportant traits for Causes<'f>fn causes(&self) -> Causes
[src]
fn causes(&self) -> Causes
Returns a iterator over the causes of this Fail
with itself as the first item and the root_cause
as the final item. Read more
fn root_cause(&self) -> &(Fail + 'static)
[src]
fn root_cause(&self) -> &(Fail + 'static)
Returns the "root cause" of this Fail
- the last value in the cause chain which does not return an underlying cause
. Read more
impl Display for ConnectionError
[src]
impl Display for ConnectionError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl From<TransportError> for ConnectionError
[src]
impl From<TransportError> for ConnectionError
fn from(x: TransportError) -> Self
[src]
fn from(x: TransportError) -> Self
Performs the conversion.
impl From<ConnectionError> for Error
[src]
impl From<ConnectionError> for Error
fn from(x: ConnectionError) -> Error
[src]
fn from(x: ConnectionError) -> Error
Performs the conversion.
Auto Trait Implementations
impl Send for ConnectionError
impl Send for ConnectionError
impl Sync for ConnectionError
impl Sync for ConnectionError