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