pub enum UpdateLoginFlowBody {
Password(Box<UpdateLoginFlowWithPasswordMethod>),
Oidc(Box<UpdateLoginFlowWithOidcMethod>),
Saml(Box<UpdateLoginFlowWithSamlMethod>),
Totp(Box<UpdateLoginFlowWithTotpMethod>),
Webauthn(Box<UpdateLoginFlowWithWebAuthnMethod>),
LookupSecret(Box<UpdateLoginFlowWithLookupSecretMethod>),
Code(Box<UpdateLoginFlowWithCodeMethod>),
Passkey(Box<UpdateLoginFlowWithPasskeyMethod>),
IdentifierFirst(Box<UpdateLoginFlowWithIdentifierFirstMethod>),
}Variants§
Password(Box<UpdateLoginFlowWithPasswordMethod>)
Oidc(Box<UpdateLoginFlowWithOidcMethod>)
Saml(Box<UpdateLoginFlowWithSamlMethod>)
Totp(Box<UpdateLoginFlowWithTotpMethod>)
Webauthn(Box<UpdateLoginFlowWithWebAuthnMethod>)
LookupSecret(Box<UpdateLoginFlowWithLookupSecretMethod>)
Code(Box<UpdateLoginFlowWithCodeMethod>)
Passkey(Box<UpdateLoginFlowWithPasskeyMethod>)
IdentifierFirst(Box<UpdateLoginFlowWithIdentifierFirstMethod>)
Trait Implementations§
Source§impl Clone for UpdateLoginFlowBody
impl Clone for UpdateLoginFlowBody
Source§fn clone(&self) -> UpdateLoginFlowBody
fn clone(&self) -> UpdateLoginFlowBody
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 UpdateLoginFlowBody
impl Debug for UpdateLoginFlowBody
Source§impl Default for UpdateLoginFlowBody
impl Default for UpdateLoginFlowBody
Source§impl<'de> Deserialize<'de> for UpdateLoginFlowBody
impl<'de> Deserialize<'de> for UpdateLoginFlowBody
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 UpdateLoginFlowBody
impl PartialEq for UpdateLoginFlowBody
Source§impl Serialize for UpdateLoginFlowBody
impl Serialize for UpdateLoginFlowBody
impl StructuralPartialEq for UpdateLoginFlowBody
Auto Trait Implementations§
impl Freeze for UpdateLoginFlowBody
impl RefUnwindSafe for UpdateLoginFlowBody
impl Send for UpdateLoginFlowBody
impl Sync for UpdateLoginFlowBody
impl Unpin for UpdateLoginFlowBody
impl UnwindSafe for UpdateLoginFlowBody
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