Enum thrussh::Error

source ·
pub enum Error {
Show 26 variants CouldNotReadKey, KexInit, NoCommonKexAlgo, NoCommonKeyAlgo, NoCommonCipher, Version, Kex, PacketAuth, Inconsistent, NotAuthenticated, IndexOutOfBounds, Utf8(Utf8Error), UnknownKey, WrongChannel, IO(Error), Disconnect, NoHomeDir, KeyChanged(usize), HUP, OpenSSL(Error), OpenSSLStack(ErrorStack), Unit, ConnectionTimeout, NoAuthMethod, Keys(Error), Timer(Error),
}
Expand description

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.

NotAuthenticated

The client is not yet authenticated.

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

Timer(Error)

Timer error

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
👎Deprecated since 1.42.0: use the Display impl or to_string()
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.