pub trait DowncastSecretManager: SecretManage {
// Required method
fn downcast<T: 'static + SecretManage>(&self) -> Option<&T>;
}Available on crate feature
client only.Required Methods§
fn downcast<T: 'static + SecretManage>(&self) -> Option<&T>
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.