Enum ssb_client::EasySsbError [] [src]

pub enum EasySsbError<T> {
    FailedHandshake(ClientHandshakeFailure, T),
    IoError(Error, T),
}

Everything that can go wrong when creating a client via easy_ssb.

Variants

The handshake was performed without io errors but did not terminate successfully.

An io error happened during the handshake.

Trait Implementations

impl<T: Debug> Debug for EasySsbError<T>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for EasySsbError<T> where
    T: Send

impl<T> Sync for EasySsbError<T> where
    T: Sync