pub enum AccessError {
KeyGen(String),
InvalidKey(String),
Canonical(String),
Directory(String),
}Variants§
KeyGen(String)
Key generation failed (OS randomness unavailable, or an invalid scalar).
InvalidKey(String)
A public key could not be parsed.
Canonical(String)
A capability could not be canonicalized for signing/verification.
Directory(String)
The key directory backend failed (not “key absent” — that is a Deny).
Trait Implementations§
Source§impl Debug for AccessError
impl Debug for AccessError
Source§impl Display for AccessError
impl Display for AccessError
Source§impl Error for AccessError
impl Error for AccessError
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()
Auto Trait Implementations§
impl Freeze for AccessError
impl RefUnwindSafe for AccessError
impl Send for AccessError
impl Sync for AccessError
impl Unpin for AccessError
impl UnsafeUnpin for AccessError
impl UnwindSafe for AccessError
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