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)>
Returns 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 Freeze for OpenSSHKeyError
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