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>If supplied, neither startTime or endTime can be provided
This field is **optional.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
limit: Option<i32>The limit parameter.
This field is **optional.
recv_window: Option<Decimal>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
Source§impl<'de> Deserialize<'de> for AllOrderListParams
impl<'de> Deserialize<'de> for AllOrderListParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. 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