pub enum SecretError {
NotFound {
path: PathBuf,
},
ClusterNotImplemented,
Io {
path: PathBuf,
source: Error,
},
}Expand description
Errors returned by SecretResolver::resolve.
Variants§
NotFound
The referenced secret file does not exist in the yubaba secret store.
ClusterNotImplemented
SecretRef::Cluster is reserved for V2 (raft-replicated cluster
secrets). V1 returns this error for any cluster secret reference.
Io
I/O error reading the secret file.
Trait Implementations§
Source§impl Debug for SecretError
impl Debug for SecretError
Source§impl Display for SecretError
impl Display for SecretError
Source§impl Error for SecretError
impl Error for SecretError
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 SecretError
impl !UnwindSafe for SecretError
impl Freeze for SecretError
impl Send for SecretError
impl Sync for SecretError
impl Unpin for SecretError
impl UnsafeUnpin for SecretError
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