Enum zoom_api::types::SignInWithTwoFactorAuth
source · pub enum SignInWithTwoFactorAuth {
All,
Group,
None,
Role,
Noop,
FallthroughString,
}Expand description
Settings for 2FA( two factor authentication ). The value can be one of the following:
all: Two factor authentication will be enabled for all users in the account.
none: Two factor authentication is disabled.
group: Two factor authentication will be enabled for users belonging to specific groups. If 2FA is enabled for certain groups, the group IDs of the group(s) will be provided in the sign_in_with_two_factor_auth_groups field.
role: Two factor authentication will be enabled only for users assigned with specific roles in the account. If 2FA is enabled for specific roles, the role IDs will be provided in the
sign_in_with_two_factor_auth_roles field.
Variants
All
Group
None
Role
Noop
FallthroughString
Implementations
Trait Implementations
sourceimpl Clone for SignInWithTwoFactorAuth
impl Clone for SignInWithTwoFactorAuth
sourcefn clone(&self) -> SignInWithTwoFactorAuth
fn clone(&self) -> SignInWithTwoFactorAuth
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SignInWithTwoFactorAuth
impl Debug for SignInWithTwoFactorAuth
sourceimpl Default for SignInWithTwoFactorAuth
impl Default for SignInWithTwoFactorAuth
sourcefn default() -> SignInWithTwoFactorAuth
fn default() -> SignInWithTwoFactorAuth
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SignInWithTwoFactorAuth
impl<'de> Deserialize<'de> for SignInWithTwoFactorAuth
sourcefn 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
sourceimpl Display for SignInWithTwoFactorAuth
impl Display for SignInWithTwoFactorAuth
sourceimpl JsonSchema for SignInWithTwoFactorAuth
impl JsonSchema for SignInWithTwoFactorAuth
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<SignInWithTwoFactorAuth> for SignInWithTwoFactorAuth
impl PartialEq<SignInWithTwoFactorAuth> for SignInWithTwoFactorAuth
sourcefn eq(&self, other: &SignInWithTwoFactorAuth) -> bool
fn eq(&self, other: &SignInWithTwoFactorAuth) -> bool
sourceimpl Serialize for SignInWithTwoFactorAuth
impl Serialize for SignInWithTwoFactorAuth
impl StructuralPartialEq for SignInWithTwoFactorAuth
Auto Trait Implementations
impl RefUnwindSafe for SignInWithTwoFactorAuth
impl Send for SignInWithTwoFactorAuth
impl Sync for SignInWithTwoFactorAuth
impl Unpin for SignInWithTwoFactorAuth
impl UnwindSafe for SignInWithTwoFactorAuth
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more