Enum rouille::websocket::SendError [] [src]

pub enum SendError {
    IoError(Error),
    Closed,
}

Error that can happen when sending a message to the client.

Variants

Failed to transfer the message on the socket.

The websocket connection is closed.

Trait Implementations

impl Debug for SendError
[src]

Formats the value using the given formatter.

impl From<Error> for SendError
[src]

Performs the conversion.