Skip to main content

Vault

Trait Vault 

Source
pub trait Vault {
    // Required method
    fn resolve(&self, reference: &SecretRef) -> Option<String>;
}
Expand description

Resolves references at use; never part of a serialized model.

Required Methods§

Source

fn resolve(&self, reference: &SecretRef) -> Option<String>

The value behind reference, or None when the store has no such name.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§