pub struct PasswordEncryptionConfiguration {
pub encryption_scheme: Option<String>,
pub encryption_scheme_factor: Option<i32>,
pub modify_encryption_scheme_on_login: Option<bool>,
}
Expand description
PasswordEncryptionConfiguration : Password Encryption Scheme Configuration
Fields§
§encryption_scheme: Option<String>
§encryption_scheme_factor: Option<i32>
§modify_encryption_scheme_on_login: Option<bool>
Implementations§
Source§impl PasswordEncryptionConfiguration
impl PasswordEncryptionConfiguration
Sourcepub fn new() -> PasswordEncryptionConfiguration
pub fn new() -> PasswordEncryptionConfiguration
Password Encryption Scheme Configuration
Trait Implementations§
Source§impl Clone for PasswordEncryptionConfiguration
impl Clone for PasswordEncryptionConfiguration
Source§fn clone(&self) -> PasswordEncryptionConfiguration
fn clone(&self) -> PasswordEncryptionConfiguration
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 Default for PasswordEncryptionConfiguration
impl Default for PasswordEncryptionConfiguration
Source§fn default() -> PasswordEncryptionConfiguration
fn default() -> PasswordEncryptionConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordEncryptionConfiguration
impl<'de> Deserialize<'de> for PasswordEncryptionConfiguration
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
Source§impl PartialEq for PasswordEncryptionConfiguration
impl PartialEq for PasswordEncryptionConfiguration
Source§fn eq(&self, other: &PasswordEncryptionConfiguration) -> bool
fn eq(&self, other: &PasswordEncryptionConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PasswordEncryptionConfiguration
Auto Trait Implementations§
impl Freeze for PasswordEncryptionConfiguration
impl RefUnwindSafe for PasswordEncryptionConfiguration
impl Send for PasswordEncryptionConfiguration
impl Sync for PasswordEncryptionConfiguration
impl Unpin for PasswordEncryptionConfiguration
impl UnwindSafe for PasswordEncryptionConfiguration
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