pub enum HoldingsResult {
Success(HoldingsPage),
NeedTan(TanChallenge),
Empty,
}Expand description
Result of a holdings request.
Variants§
Success(HoldingsPage)
Holdings data retrieved (may need more pages via touchdown).
NeedTan(TanChallenge)
Bank requires TAN for this operation.
Empty
No holdings data in response (depot may be empty or segment not supported).
Auto Trait Implementations§
impl Freeze for HoldingsResult
impl RefUnwindSafe for HoldingsResult
impl Send for HoldingsResult
impl Sync for HoldingsResult
impl Unpin for HoldingsResult
impl UnsafeUnpin for HoldingsResult
impl UnwindSafe for HoldingsResult
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