pub enum UpdateRegistrationFlowBody {
Password(Box<UpdateRegistrationFlowWithPasswordMethod>),
Oidc(Box<UpdateRegistrationFlowWithOidcMethod>),
Saml(Box<UpdateRegistrationFlowWithSamlMethod>),
Webauthn(Box<UpdateRegistrationFlowWithWebAuthnMethod>),
Code(Box<UpdateRegistrationFlowWithCodeMethod>),
Passkey(Box<UpdateRegistrationFlowWithPasskeyMethod>),
Profile(Box<UpdateRegistrationFlowWithProfileMethod>),
}Expand description
UpdateRegistrationFlowBody : Update Registration Request Body
Variants§
Password(Box<UpdateRegistrationFlowWithPasswordMethod>)
Oidc(Box<UpdateRegistrationFlowWithOidcMethod>)
Saml(Box<UpdateRegistrationFlowWithSamlMethod>)
Webauthn(Box<UpdateRegistrationFlowWithWebAuthnMethod>)
Code(Box<UpdateRegistrationFlowWithCodeMethod>)
Passkey(Box<UpdateRegistrationFlowWithPasskeyMethod>)
Profile(Box<UpdateRegistrationFlowWithProfileMethod>)
Trait Implementations§
Source§impl Clone for UpdateRegistrationFlowBody
impl Clone for UpdateRegistrationFlowBody
Source§fn clone(&self) -> UpdateRegistrationFlowBody
fn clone(&self) -> UpdateRegistrationFlowBody
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 UpdateRegistrationFlowBody
impl Debug for UpdateRegistrationFlowBody
Source§impl Default for UpdateRegistrationFlowBody
impl Default for UpdateRegistrationFlowBody
Source§impl<'de> Deserialize<'de> for UpdateRegistrationFlowBody
impl<'de> Deserialize<'de> for UpdateRegistrationFlowBody
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
impl StructuralPartialEq for UpdateRegistrationFlowBody
Auto Trait Implementations§
impl Freeze for UpdateRegistrationFlowBody
impl RefUnwindSafe for UpdateRegistrationFlowBody
impl Send for UpdateRegistrationFlowBody
impl Sync for UpdateRegistrationFlowBody
impl Unpin for UpdateRegistrationFlowBody
impl UnwindSafe for UpdateRegistrationFlowBody
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