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§
Trait Implementations§
source§impl Debug for OpenSSHKeyError
impl Debug for OpenSSHKeyError
source§impl Display for OpenSSHKeyError
impl Display for OpenSSHKeyError
source§impl Error for OpenSSHKeyError
impl Error for OpenSSHKeyError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more