pub enum FlowChallengeResponseRequest {
Show 19 variants
AkSourceOauthApple(Box<AppleChallengeResponseRequest>),
AkStageAuthenticatorDuo(Box<AuthenticatorDuoChallengeResponseRequest>),
AkStageAuthenticatorSms(Box<AuthenticatorSmsChallengeResponseRequest>),
AkStageAuthenticatorStatic(Box<AuthenticatorStaticChallengeResponseRequest>),
AkStageAuthenticatorTotp(Box<AuthenticatorTotpChallengeResponseRequest>),
AkStageAuthenticatorValidate(Box<AuthenticatorValidationChallengeResponseRequest>),
AkStageAuthenticatorWebauthn(Box<AuthenticatorWebAuthnChallengeResponseRequest>),
AkStageAutosubmit(Box<AutoSubmitChallengeResponseRequest>),
AkStageCaptcha(Box<CaptchaChallengeResponseRequest>),
AkStageConsent(Box<ConsentChallengeResponseRequest>),
AkStageDummy(Box<DummyChallengeResponseRequest>),
AkStageEmail(Box<EmailChallengeResponseRequest>),
AkStageIdentification(Box<IdentificationChallengeResponseRequest>),
AkProviderOauth2DeviceCode(Box<OAuthDeviceCodeChallengeResponseRequest>),
AkProviderOauth2DeviceCodeFinish(Box<OAuthDeviceCodeFinishChallengeResponseRequest>),
AkStagePassword(Box<PasswordChallengeResponseRequest>),
AkSourcePlex(Box<PlexAuthenticationChallengeResponseRequest>),
AkStagePrompt(PromptChallengeResponseRequest),
AkStageUserLogin(Box<UserLoginChallengeResponseRequest>),
}
Variants§
AkSourceOauthApple(Box<AppleChallengeResponseRequest>)
AkStageAuthenticatorDuo(Box<AuthenticatorDuoChallengeResponseRequest>)
AkStageAuthenticatorSms(Box<AuthenticatorSmsChallengeResponseRequest>)
AkStageAuthenticatorStatic(Box<AuthenticatorStaticChallengeResponseRequest>)
AkStageAuthenticatorTotp(Box<AuthenticatorTotpChallengeResponseRequest>)
AkStageAuthenticatorValidate(Box<AuthenticatorValidationChallengeResponseRequest>)
AkStageAuthenticatorWebauthn(Box<AuthenticatorWebAuthnChallengeResponseRequest>)
AkStageAutosubmit(Box<AutoSubmitChallengeResponseRequest>)
AkStageCaptcha(Box<CaptchaChallengeResponseRequest>)
AkStageConsent(Box<ConsentChallengeResponseRequest>)
AkStageDummy(Box<DummyChallengeResponseRequest>)
AkStageEmail(Box<EmailChallengeResponseRequest>)
AkStageIdentification(Box<IdentificationChallengeResponseRequest>)
AkProviderOauth2DeviceCode(Box<OAuthDeviceCodeChallengeResponseRequest>)
AkProviderOauth2DeviceCodeFinish(Box<OAuthDeviceCodeFinishChallengeResponseRequest>)
AkStagePassword(Box<PasswordChallengeResponseRequest>)
AkSourcePlex(Box<PlexAuthenticationChallengeResponseRequest>)
AkStagePrompt(PromptChallengeResponseRequest)
AkStageUserLogin(Box<UserLoginChallengeResponseRequest>)
Trait Implementations§
Source§impl Clone for FlowChallengeResponseRequest
impl Clone for FlowChallengeResponseRequest
Source§fn clone(&self) -> FlowChallengeResponseRequest
fn clone(&self) -> FlowChallengeResponseRequest
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 FlowChallengeResponseRequest
impl Debug for FlowChallengeResponseRequest
Source§impl<'de> Deserialize<'de> for FlowChallengeResponseRequest
impl<'de> Deserialize<'de> for FlowChallengeResponseRequest
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 FlowChallengeResponseRequest
impl PartialEq for FlowChallengeResponseRequest
Source§fn eq(&self, other: &FlowChallengeResponseRequest) -> bool
fn eq(&self, other: &FlowChallengeResponseRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FlowChallengeResponseRequest
Auto Trait Implementations§
impl Freeze for FlowChallengeResponseRequest
impl RefUnwindSafe for FlowChallengeResponseRequest
impl Send for FlowChallengeResponseRequest
impl Sync for FlowChallengeResponseRequest
impl Unpin for FlowChallengeResponseRequest
impl UnwindSafe for FlowChallengeResponseRequest
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