pub trait CredentialStoreFactory: Send + Sync {
// Required method
fn build(&self, config: &Value) -> Result<Arc<dyn CredentialStore>>;
}Expand description
Builds a CredentialStore from its [storage.<name>] TOML subsection.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".