pub struct PasswordRequirement {
pub consecutive_characters_length: i64,
pub have_special_character: bool,
pub minimum_password_length: i64,
pub weak_enhance_detection: bool,
}
Expand description
This object refers to the enhanced password rules that allows Zoom account admins and owners to apply extra requiremets to the users’ Zoom login password.
Fields§
§consecutive_characters_length: i64
This object refers to the enhanced password rules that allows Zoom account admins and owners to apply extra requiremets to the users’ Zoom login password.
have_special_character: bool
This object refers to the enhanced password rules that allows Zoom account admins and owners to apply extra requiremets to the users’ Zoom login password.
minimum_password_length: i64
This object refers to the enhanced password rules that allows Zoom account admins and owners to apply extra requiremets to the users’ Zoom login password.
weak_enhance_detection: bool
This object refers to the enhanced password rules that allows Zoom account admins and owners to apply extra requiremets to the users’ Zoom login password.
Trait Implementations§
Source§impl Clone for PasswordRequirement
impl Clone for PasswordRequirement
Source§fn clone(&self) -> PasswordRequirement
fn clone(&self) -> PasswordRequirement
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for PasswordRequirement
impl Debug for PasswordRequirement
Source§impl<'de> Deserialize<'de> for PasswordRequirement
impl<'de> Deserialize<'de> for PasswordRequirement
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>,
Source§impl JsonSchema for PasswordRequirement
impl JsonSchema for PasswordRequirement
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more