pub enum KeyringError {
Io(Error),
Parse(String),
NoConfigDir,
DuplicateName(String),
DuplicateSerial {
serial: String,
existing_name: String,
},
InvalidName(String),
}Expand description
Errors loading, saving, or mutating the registry.
Variants§
Trait Implementations§
Source§impl Debug for KeyringError
impl Debug for KeyringError
Source§impl Display for KeyringError
impl Display for KeyringError
Source§impl Error for KeyringError
impl Error for KeyringError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for KeyringError
impl !UnwindSafe for KeyringError
impl Freeze for KeyringError
impl Send for KeyringError
impl Sync for KeyringError
impl Unpin for KeyringError
impl UnsafeUnpin for KeyringError
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