pub enum SshKeyImportError {
ParsingError,
PasswordRequired,
WrongPassword,
UnsupportedKeyType,
}
Variants§
Trait Implementations§
Source§impl Debug for SshKeyImportError
impl Debug for SshKeyImportError
Source§impl Display for SshKeyImportError
impl Display for SshKeyImportError
Source§impl Error for SshKeyImportError
impl Error for SshKeyImportError
1.30.0 · 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 FlatError for SshKeyImportError
impl FlatError for SshKeyImportError
fn error_variant(&self) -> &'static str
Source§impl From<SshKeyImportError> for JsValue
impl From<SshKeyImportError> for JsValue
Source§fn from(error: SshKeyImportError) -> Self
fn from(error: SshKeyImportError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SshKeyImportError
impl PartialEq for SshKeyImportError
impl StructuralPartialEq for SshKeyImportError
Auto Trait Implementations§
impl Freeze for SshKeyImportError
impl RefUnwindSafe for SshKeyImportError
impl Send for SshKeyImportError
impl Sync for SshKeyImportError
impl Unpin for SshKeyImportError
impl UnwindSafe for SshKeyImportError
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