pub trait EncryptedAttribute {
// Provided method
fn encrypted_attributes() -> &'static [EncryptedFieldConfig] { ... }
}Expand description
Trait implemented by records that declare encrypted attributes.
Provided Methods§
Sourcefn encrypted_attributes() -> &'static [EncryptedFieldConfig]
fn encrypted_attributes() -> &'static [EncryptedFieldConfig]
Returns encrypted-attribute metadata for the record type.
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.