pub struct FetchOpts {
pub balance: bool,
pub transactions: bool,
pub holdings: bool,
pub days: u32,
}Expand description
Options controlling what data to fetch in a single authenticated dialog.
Fields§
§balance: boolFetch balance (HKSAL). Default: true.
transactions: boolFetch transactions (HKKAZ). Default: true.
holdings: boolFetch securities holdings (HKWPD). Default: true.
days: u32Days of transaction history to fetch. Default: 90.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FetchOpts
impl RefUnwindSafe for FetchOpts
impl Send for FetchOpts
impl Sync for FetchOpts
impl Unpin for FetchOpts
impl UnsafeUnpin for FetchOpts
impl UnwindSafe for FetchOpts
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