pub enum PollResult {
Confirmed(Dialog<Open>, Response),
Pending(Dialog<TanPending>),
}Expand description
Result of Dialog<TanPending>::poll().
Variants§
Confirmed(Dialog<Open>, Response)
TAN confirmed. Dialog returns to Open state.
Pending(Dialog<TanPending>)
TAN still pending (3955/3956). Dialog remains in TanPending.
Auto Trait Implementations§
impl Freeze for PollResult
impl !RefUnwindSafe for PollResult
impl Send for PollResult
impl Sync for PollResult
impl Unpin for PollResult
impl UnsafeUnpin for PollResult
impl !UnwindSafe for PollResult
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