Enum openssh_keys::errors::OpenSSHKeyError
source · pub enum OpenSSHKeyError {
IO {
source: Error,
},
InvalidUtf8 {
source: Utf8Error,
},
InvalidBase64 {
detail: String,
},
InvalidFormat,
UnsupportedKeyType {
keytype: String,
},
UnsupportedCurve {
curve: String,
},
}Variants
IO
Fields
source: ErrorInvalidUtf8
Fields
source: Utf8ErrorInvalidBase64
Fields
detail: StringInvalidFormat
UnsupportedKeyType
Fields
keytype: StringUnsupportedCurve
Fields
curve: StringTrait Implementations
sourceimpl Debug for OpenSSHKeyError
impl Debug for OpenSSHKeyError
sourceimpl Display for OpenSSHKeyError
impl Display for OpenSSHKeyError
sourceimpl Error for OpenSSHKeyError
impl Error for OpenSSHKeyError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<Error> for OpenSSHKeyError
impl From<Error> for OpenSSHKeyError
Auto Trait Implementations
impl !RefUnwindSafe for OpenSSHKeyError
impl Send for OpenSSHKeyError
impl Sync for OpenSSHKeyError
impl Unpin for OpenSSHKeyError
impl !UnwindSafe for OpenSSHKeyError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more