[][src]Enum quinn::EndpointError

pub enum EndpointError {
    Socket(Error),
    Tls(TLSError),
    WebPki(Error),
}

Errors that can occur during the construction of an Endpoint.

Variants

Socket(Error)

An error during setup of the underlying UDP socket.

Tls(TLSError)

An error configuring TLS.

WebPki(Error)

Errors relating to web PKI infrastructure

Trait Implementations

impl From<EndpointError> for EndpointError
[src]

impl From<Error> for EndpointError
[src]

impl Debug for EndpointError
[src]

impl Display for EndpointError
[src]

impl Error for EndpointError
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T