Enum p2p::RendezvousServerError[]

pub enum RendezvousServerError {
    AcceptError(Error),
    ReadError(Error),
    SendError(Error),
    Timeout,
    ConnectionClosed,
    Encrypt(CryptoError),
    Decrypt(CryptoError),
}

Errors related to rendezvous server client connection handling.

Variants

Failure to accept incomin client connection.

Failure to read data from client socket.

Failure to write data to client socket.

Client connection related operation timedout.

Client connection was closed.

Failure to encrypt data.

Failure to decrypt data.

Trait Implementations

impl Debug for RendezvousServerError
[src]

Formats the value using the given formatter. Read more

impl Display for RendezvousServerError

Formats the value using the given formatter. Read more

impl Error for RendezvousServerError

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations