pub trait SecretDescribable {
// Required method
fn secret_specs() -> &'static [SecretSpec];
}Expand description
Trait implemented by zero-sized marker types to surface secret specs.
Required Methods§
Sourcefn secret_specs() -> &'static [SecretSpec]
fn secret_specs() -> &'static [SecretSpec]
Return the static list of secrets required by the component.
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.