pub enum UpdateSettingsFlowBody {
Password(Box<UpdateSettingsFlowWithPasswordMethod>),
Profile(Box<UpdateSettingsFlowWithProfileMethod>),
Oidc(Box<UpdateSettingsFlowWithOidcMethod>),
Saml(Box<UpdateSettingsFlowWithSamlMethod>),
Totp(Box<UpdateSettingsFlowWithTotpMethod>),
Webauthn(Box<UpdateSettingsFlowWithWebAuthnMethod>),
LookupSecret(Box<UpdateSettingsFlowWithLookupMethod>),
Passkey(Box<UpdateSettingsFlowWithPasskeyMethod>),
}Expand description
UpdateSettingsFlowBody : Update Settings Flow Request Body
Variants§
Password(Box<UpdateSettingsFlowWithPasswordMethod>)
Profile(Box<UpdateSettingsFlowWithProfileMethod>)
Oidc(Box<UpdateSettingsFlowWithOidcMethod>)
Saml(Box<UpdateSettingsFlowWithSamlMethod>)
Totp(Box<UpdateSettingsFlowWithTotpMethod>)
Webauthn(Box<UpdateSettingsFlowWithWebAuthnMethod>)
LookupSecret(Box<UpdateSettingsFlowWithLookupMethod>)
Passkey(Box<UpdateSettingsFlowWithPasskeyMethod>)
Trait Implementations§
Source§impl Clone for UpdateSettingsFlowBody
impl Clone for UpdateSettingsFlowBody
Source§fn clone(&self) -> UpdateSettingsFlowBody
fn clone(&self) -> UpdateSettingsFlowBody
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 UpdateSettingsFlowBody
impl Debug for UpdateSettingsFlowBody
Source§impl Default for UpdateSettingsFlowBody
impl Default for UpdateSettingsFlowBody
Source§impl<'de> Deserialize<'de> for UpdateSettingsFlowBody
impl<'de> Deserialize<'de> for UpdateSettingsFlowBody
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 UpdateSettingsFlowBody
impl PartialEq for UpdateSettingsFlowBody
Source§impl Serialize for UpdateSettingsFlowBody
impl Serialize for UpdateSettingsFlowBody
impl StructuralPartialEq for UpdateSettingsFlowBody
Auto Trait Implementations§
impl Freeze for UpdateSettingsFlowBody
impl RefUnwindSafe for UpdateSettingsFlowBody
impl Send for UpdateSettingsFlowBody
impl Sync for UpdateSettingsFlowBody
impl Unpin for UpdateSettingsFlowBody
impl UnsafeUnpin for UpdateSettingsFlowBody
impl UnwindSafe for UpdateSettingsFlowBody
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