Struct encryption::EncryptionConfig[][src]

pub struct EncryptionConfig {
    pub data_encryption_method: EncryptionMethod,
    pub data_key_rotation_period: ReadableDuration,
    pub enable_file_dictionary_log: bool,
    pub file_dictionary_rewrite_threshold: u64,
    pub master_key: MasterKeyConfig,
    pub previous_master_key: MasterKeyConfig,
}

Fields

data_encryption_method: EncryptionMethoddata_key_rotation_period: ReadableDurationenable_file_dictionary_log: boolfile_dictionary_rewrite_threshold: u64master_key: MasterKeyConfigprevious_master_key: MasterKeyConfig

Trait Implementations

impl Clone for EncryptionConfig[src]

impl<'lt> Configuration<'lt> for EncryptionConfig[src]

type Encoder = EncryptionConfig_encoder_4c5d4add5f642ae0<'lt>

impl Debug for EncryptionConfig[src]

impl Default for EncryptionConfig[src]

impl<'de> Deserialize<'de> for EncryptionConfig where
    EncryptionConfig: Default
[src]

impl PartialEq<EncryptionConfig> for EncryptionConfig[src]

impl Serialize for EncryptionConfig[src]

impl StructuralPartialEq for EncryptionConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for EncryptionConfig

impl Send for EncryptionConfig

impl Sync for EncryptionConfig

impl Unpin for EncryptionConfig

impl UnwindSafe for EncryptionConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]