pub enum TransactionResult {
Success(TransactionPage),
NeedTan(TanChallenge),
}Expand description
Result of a transaction request.
Variants§
Success(TransactionPage)
Transaction data retrieved (may need more pages via touchdown).
NeedTan(TanChallenge)
Bank requires TAN for this operation.
Auto Trait Implementations§
impl Freeze for TransactionResult
impl RefUnwindSafe for TransactionResult
impl Send for TransactionResult
impl Sync for TransactionResult
impl Unpin for TransactionResult
impl UnsafeUnpin for TransactionResult
impl UnwindSafe for TransactionResult
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