pub struct MicrosoftAuthenticator {
pub enabled: Option<bool>,
pub secret_key: Option<String>,
pub secret_key_set: Option<bool>,
}
Expand description
Various settings for Microsoft Authenticator multi-factor authentication.
Fields§
§enabled: Option<bool>
An indication of whether multi-factor authentication with Microsoft Authenticator is enabled.
secret_key: Option<String>
The secret key to use when communicating with the Microsoft Authenticator server. This property is null
in responses.
secret_key_set: Option<bool>
Indicates if the SecretKey property is set.
Trait Implementations§
source§impl Clone for MicrosoftAuthenticator
impl Clone for MicrosoftAuthenticator
source§fn clone(&self) -> MicrosoftAuthenticator
fn clone(&self) -> MicrosoftAuthenticator
Returns a copy 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 MicrosoftAuthenticator
impl Debug for MicrosoftAuthenticator
source§impl Default for MicrosoftAuthenticator
impl Default for MicrosoftAuthenticator
source§fn default() -> MicrosoftAuthenticator
fn default() -> MicrosoftAuthenticator
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for MicrosoftAuthenticator
impl<'de> Deserialize<'de> for MicrosoftAuthenticator
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