Enum ssh_keys::Error []

pub enum Error {
    InvalidFormat,
    UnsupportedType(String),
    Encrypted,
    // some variants omitted
}

Key parsing error

Variants

This error usually means that file is damaged

Unsupported key type

Private key was encrypted (we don't support encrypted keys yet)

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Error

Formats the value using the given formatter. Read more

impl Error for Error

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error