pub struct SecurityEncryptionSettings {
pub default_algorithm: EncryptionAlgorithm,
pub key_rotation_days: u32,
pub enforce_encryption: bool,
pub secure_key_storage: bool,
}Fields§
§default_algorithm: EncryptionAlgorithm§key_rotation_days: u32§enforce_encryption: bool§secure_key_storage: boolTrait Implementations§
Source§impl Clone for SecurityEncryptionSettings
impl Clone for SecurityEncryptionSettings
Source§fn clone(&self) -> SecurityEncryptionSettings
fn clone(&self) -> SecurityEncryptionSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecurityEncryptionSettings
impl Debug for SecurityEncryptionSettings
Source§impl Default for SecurityEncryptionSettings
impl Default for SecurityEncryptionSettings
Source§impl<'de> Deserialize<'de> for SecurityEncryptionSettings
impl<'de> Deserialize<'de> for SecurityEncryptionSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SecurityEncryptionSettings
impl RefUnwindSafe for SecurityEncryptionSettings
impl Send for SecurityEncryptionSettings
impl Sync for SecurityEncryptionSettings
impl Unpin for SecurityEncryptionSettings
impl UnwindSafe for SecurityEncryptionSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more