[][src]Enum thrussh::Error

pub enum Error {
    CouldNotReadKey,
    KexInit,
    NoCommonKexAlgo,
    NoCommonKeyAlgo,
    NoCommonCipher,
    Version,
    Kex,
    PacketAuth,
    Inconsistent,
    IndexOutOfBounds,
    Utf8(Utf8Error),
    UnknownKey,
    WrongChannel,
    IO(Error),
    Disconnect,
    NoHomeDir,
    KeyChanged(usize),
    HUP,
    OpenSSL(Error),
    OpenSSLStack(ErrorStack),
    Unit,
    ConnectionTimeout,
    NoAuthMethod,
    Keys(Error),
}

Errors.

Variants

CouldNotReadKey

The key file could not be parsed.

KexInit

Unspecified problem with the beginning of key exchange.

NoCommonKexAlgo

No common key exchange algorithm.

NoCommonKeyAlgo

No common signature algorithm.

NoCommonCipher

No common cipher.

Version

Invalid SSH version string.

Kex

Error during key exchange.

PacketAuth

Invalid packet authentication code.

Inconsistent

The protocol is in an inconsistent state.

IndexOutOfBounds

Index out of bounds.

Utf8(Utf8Error)

UTF-8 decoding error (most probably ASCII error).

UnknownKey

Unknown server key.

WrongChannel

Message received/sent on unopened channel.

IO(Error)

I/O error.

Disconnect

Disconnected

NoHomeDir

No home directory found when trying to learn new host key.

KeyChanged(usize)

Remote key changed, this could mean a man-in-the-middle attack is being performed on the connection.

HUP

Connection closed by the remote side.

OpenSSL(Error)

Error from the cryptography layer.

OpenSSLStack(ErrorStack)

Error from the cryptography layer.

Unit

Unit error (sodiumoxide might return that).

ConnectionTimeout

Connection timeout.

NoAuthMethod

Missing authentication method.

Keys(Error)

Keys error

Trait Implementations

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Utf8Error> for Error[src]

impl From<ErrorStack> for Error[src]

impl From<()> for Error[src]

impl<E> From<Error> for HandlerError<E>[src]

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

Auto Trait Implementations

impl Send for Error

impl !Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

impl !RefUnwindSafe for Error

Blanket Implementations

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

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

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

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

type Error = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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