pub struct KIOpenOrders { /* private fields */ }Expand description
Request builder for the Get Open Orders endpoint
Implementations§
Source§impl KIOpenOrders
impl KIOpenOrders
Sourcepub fn build() -> Self
pub fn build() -> Self
Constructor returning a KrakenInput builder for the get open orders endpoint.
Sourcepub fn with_trade_info(self, include_trades: bool) -> Self
pub fn with_trade_info(self, include_trades: bool) -> Self
Should trades be included in returned output?
Sourcepub fn with_userref(self, userref: u32) -> Self
pub fn with_userref(self, userref: u32) -> Self
Filter results to the given user ref id. A custom userref can be passed into the add order endpoint
Trait Implementations§
Source§impl Input for KIOpenOrders
impl Input for KIOpenOrders
fn finish(self) -> KrakenInput
fn finish_clone(self) -> (KrakenInput, Self)
Auto Trait Implementations§
impl Freeze for KIOpenOrders
impl RefUnwindSafe for KIOpenOrders
impl Send for KIOpenOrders
impl Sync for KIOpenOrders
impl Unpin for KIOpenOrders
impl UnwindSafe for KIOpenOrders
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