pub struct AllOrderListParams {
pub from_id: Option<i64>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<i32>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [all_order_list] operation.
This struct holds all of the inputs you can pass when calling
all_order_list.
Fields§
§from_id: Option<i64>ID to get aggregate trades from INCLUSIVE.
This field is **optional.
start_time: Option<i64>Timestamp in ms to get aggregate trades from INCLUSIVE.
This field is **optional.
end_time: Option<i64>Timestamp in ms to get aggregate trades until INCLUSIVE.
This field is **optional.
limit: Option<i32>Default: 500; Maximum: 1000.
This field is **optional.
recv_window: Option<Decimal>The value cannot be greater than 60000.
Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified.
This field is **optional.
Implementations§
Source§impl AllOrderListParams
impl AllOrderListParams
Sourcepub fn builder() -> AllOrderListParamsBuilder
pub fn builder() -> AllOrderListParamsBuilder
Create a builder for [all_order_list].
Trait Implementations§
Source§impl Clone for AllOrderListParams
impl Clone for AllOrderListParams
Source§fn clone(&self) -> AllOrderListParams
fn clone(&self) -> AllOrderListParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AllOrderListParams
impl Debug for AllOrderListParams
Source§impl Default for AllOrderListParams
impl Default for AllOrderListParams
Source§fn default() -> AllOrderListParams
fn default() -> AllOrderListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AllOrderListParams
impl RefUnwindSafe for AllOrderListParams
impl Send for AllOrderListParams
impl Sync for AllOrderListParams
impl Unpin for AllOrderListParams
impl UnsafeUnpin for AllOrderListParams
impl UnwindSafe for AllOrderListParams
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