[][src]Enum ssb_handshake::HandshakeError

pub enum HandshakeError<IoErr> {
    Io(IoErr),
    UnexpectedEnd,
    ClientHelloDeserializeFailed,
    ClientHelloVerifyFailed,
    ServerHelloDeserializeFailed,
    ServerHelloVerifyFailed,
    ClientAuthDeserializeFailed,
    ClientAuthVerifyFailed,
    ServerAcceptDeserializeFailed,
    ServerAcceptVerifyFailed,
    SharedAInvalid,
    SharedBInvalid,
    SharedCInvalid,
}

Variants

Io(IoErr)
UnexpectedEnd
ClientHelloDeserializeFailed
ClientHelloVerifyFailed
ServerHelloDeserializeFailed
ServerHelloVerifyFailed
ClientAuthDeserializeFailed
ClientAuthVerifyFailed
ServerAcceptDeserializeFailed
ServerAcceptVerifyFailed
SharedAInvalid
SharedBInvalid
SharedCInvalid

Trait Implementations

impl<IoErr: Debug> Debug for HandshakeError<IoErr>[src]

impl<IoErr> Display for HandshakeError<IoErr> where
    IoErr: Display
[src]

impl<IoErr> Error for HandshakeError<IoErr> where
    IoErr: Error + 'static, 
[src]

impl<IoErr> From<IoErr> for HandshakeError<IoErr>[src]

impl<IoErr> From<ReadExactError<IoErr>> for HandshakeError<IoErr>[src]

Auto Trait Implementations

impl<IoErr> RefUnwindSafe for HandshakeError<IoErr> where
    IoErr: RefUnwindSafe

impl<IoErr> Send for HandshakeError<IoErr> where
    IoErr: Send

impl<IoErr> Sync for HandshakeError<IoErr> where
    IoErr: Sync

impl<IoErr> Unpin for HandshakeError<IoErr> where
    IoErr: Unpin

impl<IoErr> UnwindSafe for HandshakeError<IoErr> where
    IoErr: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,