pub trait SecretResolver {
// Required method
fn resolve_secrets(
&mut self,
vault: &dyn VaultProvider,
) -> impl Future<Output = Result<(), ConfigError>> + Send;
}Expand description
Required Methods§
Sourcefn resolve_secrets(
&mut self,
vault: &dyn VaultProvider,
) -> impl Future<Output = Result<(), ConfigError>> + Send
fn resolve_secrets( &mut self, vault: &dyn VaultProvider, ) -> impl Future<Output = Result<(), ConfigError>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.