pub enum SecretError {
NotFound {
name: String,
secret_source: String,
},
TooShort {
name: String,
len: usize,
},
MissingSalt,
ResolutionFailed {
name: String,
message: String,
},
UnsupportedResolver {
resolver: String,
},
}Expand description
Error types for secret resolution
Variants§
NotFound
Secret not found
TooShort
Secret is too short for safe fingerprinting (< 4 chars)
MissingSalt
Missing salt when secrets require fingerprinting
ResolutionFailed
Resolver execution failed
UnsupportedResolver
Unsupported resolver type
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