pub enum VaultError {
Show 21 variants
Client(String),
Authentication(String),
SecretNotFound {
path: String,
},
SecretWrite(String),
SecretRead(String),
Policy(String),
Initialization(String),
Unseal(String),
Deployment(String),
Helm(String),
Kubernetes(Error),
Ssh(Error),
InvalidConfig(String),
Configuration(String),
Installation(String),
ServiceControl(String),
Http(Error),
Serialization(Error),
Io(Error),
Vaultrs(String),
Other(String),
}Expand description
Errors that can occur during Vault operations
Variants§
Client(String)
Vault client error
Authentication(String)
Authentication error
SecretNotFound
Secret not found
SecretWrite(String)
Secret write error
SecretRead(String)
Secret read error
Policy(String)
Policy management error
Initialization(String)
Initialization error
Unseal(String)
Unseal error
Deployment(String)
Deployment error
Helm(String)
Helm operation error
Kubernetes(Error)
Kubernetes operation error
Ssh(Error)
SSH error
InvalidConfig(String)
Invalid configuration
Configuration(String)
Configuration error
Installation(String)
Installation error
ServiceControl(String)
Service control error
Http(Error)
HTTP request error
Serialization(Error)
Serialization error
Io(Error)
I/O error
Vaultrs(String)
Vaultrs client error
Other(String)
Generic error
Trait Implementations§
Source§impl Debug for VaultError
impl Debug for VaultError
Source§impl Display for VaultError
impl Display for VaultError
Source§impl Error for VaultError
impl Error for VaultError
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()
Source§impl From<ClientError> for VaultError
impl From<ClientError> for VaultError
Source§fn from(err: ClientError) -> Self
fn from(err: ClientError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for VaultError
impl From<Error> for VaultError
Source§impl From<Error> for VaultError
impl From<Error> for VaultError
Source§impl From<Error> for VaultError
impl From<Error> for VaultError
Source§impl From<Error> for VaultError
impl From<Error> for VaultError
Auto Trait Implementations§
impl !Freeze for VaultError
impl !RefUnwindSafe for VaultError
impl Send for VaultError
impl Sync for VaultError
impl Unpin for VaultError
impl !UnwindSafe for VaultError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.