pub struct GetOrderbookParams {
pub category: Category,
pub symbol: String,
pub limit: Option<u32>,
}Expand description
Parameters for getting order book.
Fields§
§category: CategoryProduct category.
symbol: StringTrading symbol.
limit: Option<u32>Depth limit (1, 25, 50, 100, 200, 500).
Implementations§
Trait Implementations§
Source§impl Clone for GetOrderbookParams
impl Clone for GetOrderbookParams
Source§fn clone(&self) -> GetOrderbookParams
fn clone(&self) -> GetOrderbookParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetOrderbookParams
impl Debug for GetOrderbookParams
Auto Trait Implementations§
impl Freeze for GetOrderbookParams
impl RefUnwindSafe for GetOrderbookParams
impl Send for GetOrderbookParams
impl Sync for GetOrderbookParams
impl Unpin for GetOrderbookParams
impl UnwindSafe for GetOrderbookParams
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