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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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§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
Source§impl Metadata<'static> for MicrosoftAuthenticator
impl Metadata<'static> for MicrosoftAuthenticator
Source§const JSON_SCHEMA: &'static str = "AccountService.v1_13_0.json"
const JSON_SCHEMA: &'static str = "AccountService.v1_13_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for MicrosoftAuthenticator
impl RefUnwindSafe for MicrosoftAuthenticator
impl Send for MicrosoftAuthenticator
impl Sync for MicrosoftAuthenticator
impl Unpin for MicrosoftAuthenticator
impl UnwindSafe for MicrosoftAuthenticator
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