pub struct ExternalIdentifierConfiguration {Show 28 fields
pub authorization_grant_id_time_to_live_in_seconds: Option<i32>,
pub change_password_id_generator: Option<Box<SecureGeneratorConfiguration>>,
pub change_password_id_time_to_live_in_seconds: Option<i32>,
pub device_code_time_to_live_in_seconds: Option<i32>,
pub device_user_code_id_generator: Option<Box<SecureGeneratorConfiguration>>,
pub email_verification_id_generator: Option<Box<SecureGeneratorConfiguration>>,
pub email_verification_id_time_to_live_in_seconds: Option<i32>,
pub email_verification_one_time_code_generator: Option<Box<SecureGeneratorConfiguration>>,
pub external_authentication_id_time_to_live_in_seconds: Option<i32>,
pub login_intent_time_to_live_in_seconds: Option<i32>,
pub one_time_password_time_to_live_in_seconds: Option<i32>,
pub passwordless_login_generator: Option<Box<SecureGeneratorConfiguration>>,
pub passwordless_login_time_to_live_in_seconds: Option<i32>,
pub pending_account_link_time_to_live_in_seconds: Option<i32>,
pub registration_verification_id_generator: Option<Box<SecureGeneratorConfiguration>>,
pub registration_verification_id_time_to_live_in_seconds: Option<i32>,
pub registration_verification_one_time_code_generator: Option<Box<SecureGeneratorConfiguration>>,
pub remember_o_auth_scope_consent_choice_time_to_live_in_seconds: Option<i32>,
pub samlv2_auth_n_request_id_time_to_live_in_seconds: Option<i32>,
pub setup_password_id_generator: Option<Box<SecureGeneratorConfiguration>>,
pub setup_password_id_time_to_live_in_seconds: Option<i32>,
pub trust_token_time_to_live_in_seconds: Option<i32>,
pub two_factor_id_time_to_live_in_seconds: Option<i32>,
pub two_factor_one_time_code_id_generator: Option<Box<SecureGeneratorConfiguration>>,
pub two_factor_one_time_code_id_time_to_live_in_seconds: Option<i32>,
pub two_factor_trust_id_time_to_live_in_seconds: Option<i32>,
pub web_authn_authentication_challenge_time_to_live_in_seconds: Option<i32>,
pub web_authn_registration_challenge_time_to_live_in_seconds: Option<i32>,
}
Expand description
ExternalIdentifierConfiguration :
Fields§
§change_password_id_generator: Option<Box<SecureGeneratorConfiguration>>
§change_password_id_time_to_live_in_seconds: Option<i32>
§device_code_time_to_live_in_seconds: Option<i32>
§device_user_code_id_generator: Option<Box<SecureGeneratorConfiguration>>
§email_verification_id_generator: Option<Box<SecureGeneratorConfiguration>>
§email_verification_id_time_to_live_in_seconds: Option<i32>
§email_verification_one_time_code_generator: Option<Box<SecureGeneratorConfiguration>>
§external_authentication_id_time_to_live_in_seconds: Option<i32>
§login_intent_time_to_live_in_seconds: Option<i32>
§one_time_password_time_to_live_in_seconds: Option<i32>
§passwordless_login_generator: Option<Box<SecureGeneratorConfiguration>>
§passwordless_login_time_to_live_in_seconds: Option<i32>
§pending_account_link_time_to_live_in_seconds: Option<i32>
§registration_verification_id_generator: Option<Box<SecureGeneratorConfiguration>>
§registration_verification_id_time_to_live_in_seconds: Option<i32>
§registration_verification_one_time_code_generator: Option<Box<SecureGeneratorConfiguration>>
§remember_o_auth_scope_consent_choice_time_to_live_in_seconds: Option<i32>
§samlv2_auth_n_request_id_time_to_live_in_seconds: Option<i32>
§setup_password_id_generator: Option<Box<SecureGeneratorConfiguration>>
§setup_password_id_time_to_live_in_seconds: Option<i32>
§trust_token_time_to_live_in_seconds: Option<i32>
§two_factor_id_time_to_live_in_seconds: Option<i32>
§two_factor_one_time_code_id_generator: Option<Box<SecureGeneratorConfiguration>>
§two_factor_one_time_code_id_time_to_live_in_seconds: Option<i32>
§two_factor_trust_id_time_to_live_in_seconds: Option<i32>
§web_authn_authentication_challenge_time_to_live_in_seconds: Option<i32>
§web_authn_registration_challenge_time_to_live_in_seconds: Option<i32>
Implementations§
Trait Implementations§
Source§impl Clone for ExternalIdentifierConfiguration
impl Clone for ExternalIdentifierConfiguration
Source§fn clone(&self) -> ExternalIdentifierConfiguration
fn clone(&self) -> ExternalIdentifierConfiguration
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 Default for ExternalIdentifierConfiguration
impl Default for ExternalIdentifierConfiguration
Source§fn default() -> ExternalIdentifierConfiguration
fn default() -> ExternalIdentifierConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalIdentifierConfiguration
impl<'de> Deserialize<'de> for ExternalIdentifierConfiguration
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 PartialEq for ExternalIdentifierConfiguration
impl PartialEq for ExternalIdentifierConfiguration
Source§fn eq(&self, other: &ExternalIdentifierConfiguration) -> bool
fn eq(&self, other: &ExternalIdentifierConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExternalIdentifierConfiguration
Auto Trait Implementations§
impl Freeze for ExternalIdentifierConfiguration
impl RefUnwindSafe for ExternalIdentifierConfiguration
impl Send for ExternalIdentifierConfiguration
impl Sync for ExternalIdentifierConfiguration
impl Unpin for ExternalIdentifierConfiguration
impl UnwindSafe for ExternalIdentifierConfiguration
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