pub enum ContinueWith {
ShowVerificationUi(Box<ContinueWithVerificationUi>),
SetOrySessionToken(Box<ContinueWithSetOrySessionToken>),
ShowSettingsUi(Box<ContinueWithSettingsUi>),
ShowRecoveryUi(Box<ContinueWithRecoveryUi>),
RedirectBrowserTo(Box<ContinueWithRedirectBrowserTo>),
}Variants§
ShowVerificationUi(Box<ContinueWithVerificationUi>)
SetOrySessionToken(Box<ContinueWithSetOrySessionToken>)
ShowSettingsUi(Box<ContinueWithSettingsUi>)
ShowRecoveryUi(Box<ContinueWithRecoveryUi>)
RedirectBrowserTo(Box<ContinueWithRedirectBrowserTo>)
Trait Implementations§
Source§impl Clone for ContinueWith
impl Clone for ContinueWith
Source§fn clone(&self) -> ContinueWith
fn clone(&self) -> ContinueWith
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 ContinueWith
impl Debug for ContinueWith
Source§impl Default for ContinueWith
impl Default for ContinueWith
Source§impl<'de> Deserialize<'de> for ContinueWith
impl<'de> Deserialize<'de> for ContinueWith
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 ContinueWith
impl PartialEq for ContinueWith
Source§impl Serialize for ContinueWith
impl Serialize for ContinueWith
impl StructuralPartialEq for ContinueWith
Auto Trait Implementations§
impl Freeze for ContinueWith
impl RefUnwindSafe for ContinueWith
impl Send for ContinueWith
impl Sync for ContinueWith
impl Unpin for ContinueWith
impl UnwindSafe for ContinueWith
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