pub enum BalanceResult {
Success(AccountBalance),
NeedTan(TanChallenge),
Empty,
}Expand description
Result of a balance request.
Variants§
Success(AccountBalance)
Balance retrieved successfully.
NeedTan(TanChallenge)
Bank requires TAN for this operation.
Empty
No balance data in response (unexpected but not fatal).
Auto Trait Implementations§
impl Freeze for BalanceResult
impl RefUnwindSafe for BalanceResult
impl Send for BalanceResult
impl Sync for BalanceResult
impl Unpin for BalanceResult
impl UnsafeUnpin for BalanceResult
impl UnwindSafe for BalanceResult
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