Skip to main content

Error

Enum Error 

Source
#[non_exhaustive]
pub enum Error { Acquisition { source: Cow<'static, str>, reason: String, }, KeyNotFound, Fragment(String), Defragment(String), Decoy(String), Codex(String), LockedOut, MemoryLock(String), InvalidConfig(String), Internal(&'static str), }
Expand description

A redaction-safe error type covering every failure mode the vault can surface.

Variants are coarse on purpose: callers branch on category (acquisition vs. storage vs. policy) and use the embedded message for diagnostics. Variants must remain free of key material — see the module-level documentation.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Acquisition

A KeyFetch implementation failed to obtain key material from its source.

The source is a short identifier for the fetcher (for example "keychain", "file", "env"). The reason is a redacted, human-readable explanation that must not include the key bytes, the credential, or any secret-equivalent value.

Fields

§source: Cow<'static, str>

Short identifier for the fetcher that produced the failure.

§reason: String

Sanitized explanation. Never key material.

§

KeyNotFound

A lookup failed because no key matching the requested identifier is registered in the vault.

§

Fragment(String)

Fragmenting the raw key into the configured storage layout failed.

Reasons include: invalid configuration (for example frag_max < frag_min), or an internal invariant being violated by a custom FragmentStrategy.

§

Defragment(String)

Reassembling fragments back into a usable key failed.

This is almost always an internal error: the fragmenter and defragmenter disagreed on the layout, or storage was corrupted.

§

Decoy(String)

A decoy strategy could not produce filler bytes for the configured output length.

§

Codex(String)

A Codex failed to encode or decode a byte. Custom codex implementations may return this if they want to refuse specific inputs; the built-in codices never do.

§

LockedOut

The vault is locked out: a SecurityMonitor threshold has been crossed and access is denied until the configured recovery condition is met.

§

MemoryLock(String)

Acquiring or releasing OS-level memory page locks (mlock / VirtualLock) failed. This typically means the process has hit its memlock rlimit and the operator must raise it.

§

InvalidConfig(String)

The configuration passed to the KeyVaultBuilder is internally inconsistent.

§

Internal(&'static str)

An internal invariant was violated. Indicates a bug in key-vault itself; please file an issue.

Trait Implementations§

Source§

impl Debug for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for Error

Available on crate feature std only.
1.30.0 · Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl Freeze for Error

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnsafeUnpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more