pub struct ContinueWithVerificationUi {
pub action: ActionEnum,
pub flow: Box<ContinueWithVerificationUiFlow>,
}Expand description
ContinueWithVerificationUi : Indicates, that the UI flow could be continued by showing a verification ui
Fields§
§action: ActionEnumAction will always be show_verification_ui show_verification_ui ContinueWithActionShowVerificationUIString
flow: Box<ContinueWithVerificationUiFlow>Implementations§
Source§impl ContinueWithVerificationUi
impl ContinueWithVerificationUi
Sourcepub fn new(
action: ActionEnum,
flow: ContinueWithVerificationUiFlow,
) -> ContinueWithVerificationUi
pub fn new( action: ActionEnum, flow: ContinueWithVerificationUiFlow, ) -> ContinueWithVerificationUi
Indicates, that the UI flow could be continued by showing a verification ui
Trait Implementations§
Source§impl Clone for ContinueWithVerificationUi
impl Clone for ContinueWithVerificationUi
Source§fn clone(&self) -> ContinueWithVerificationUi
fn clone(&self) -> ContinueWithVerificationUi
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 ContinueWithVerificationUi
impl Debug for ContinueWithVerificationUi
Source§impl Default for ContinueWithVerificationUi
impl Default for ContinueWithVerificationUi
Source§fn default() -> ContinueWithVerificationUi
fn default() -> ContinueWithVerificationUi
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContinueWithVerificationUi
impl<'de> Deserialize<'de> for ContinueWithVerificationUi
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 ContinueWithVerificationUi
Auto Trait Implementations§
impl Freeze for ContinueWithVerificationUi
impl RefUnwindSafe for ContinueWithVerificationUi
impl Send for ContinueWithVerificationUi
impl Sync for ContinueWithVerificationUi
impl Unpin for ContinueWithVerificationUi
impl UnwindSafe for ContinueWithVerificationUi
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