pub struct GoogleAuthenticationSettings {
pub dedicated_devices_allowed: Option<String>,
pub google_authentication_required: Option<String>,
}Expand description
Contains settings for Google-provided user authentication.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dedicated_devices_allowed: Option<String>Whether dedicated devices are allowed.
google_authentication_required: Option<String>Whether Google authentication is required.
Trait Implementations§
Source§impl Clone for GoogleAuthenticationSettings
impl Clone for GoogleAuthenticationSettings
Source§fn clone(&self) -> GoogleAuthenticationSettings
fn clone(&self) -> GoogleAuthenticationSettings
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 GoogleAuthenticationSettings
impl Debug for GoogleAuthenticationSettings
Source§impl Default for GoogleAuthenticationSettings
impl Default for GoogleAuthenticationSettings
Source§fn default() -> GoogleAuthenticationSettings
fn default() -> GoogleAuthenticationSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleAuthenticationSettings
impl<'de> Deserialize<'de> for GoogleAuthenticationSettings
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
impl Part for GoogleAuthenticationSettings
Auto Trait Implementations§
impl Freeze for GoogleAuthenticationSettings
impl RefUnwindSafe for GoogleAuthenticationSettings
impl Send for GoogleAuthenticationSettings
impl Sync for GoogleAuthenticationSettings
impl Unpin for GoogleAuthenticationSettings
impl UnwindSafe for GoogleAuthenticationSettings
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