pub enum SecretError {
InvalidUri {
uri: String,
reason: String,
},
NotFound(String),
BackendDisabled {
backend: String,
},
BackendError {
backend: String,
message: String,
},
AccessDenied(String),
FileError {
path: PathBuf,
message: String,
},
EnvNotSet {
var: String,
},
}Expand description
Errors that can occur during secret resolution
Variants§
InvalidUri
Invalid URI format
NotFound(String)
Secret not found in backend
BackendDisabled
Backend feature not compiled in
BackendError
Backend runtime error
AccessDenied(String)
Permission/access denied
FileError
File IO error
EnvNotSet
Environment variable error
Implementations§
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
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 SecretError
impl RefUnwindSafe for SecretError
impl Send for SecretError
impl Sync for SecretError
impl Unpin for SecretError
impl UnwindSafe 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