Skip to main content

SecretDescribable

Trait SecretDescribable 

Source
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§

Source

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.

Implementors§