pub struct GetPendingOrdersParams {
pub status: Option<i32>,
pub begin_time: Option<String>,
pub end_time: Option<String>,
pub token_id: Option<String>,
pub side: Option<i32>,
pub page: i32,
pub size: i32,
}Fields§
§status: Option<i32>§begin_time: Option<String>§end_time: Option<String>§token_id: Option<String>§side: Option<i32>§page: i32§size: i32Trait Implementations§
Source§impl Clone for GetPendingOrdersParams
impl Clone for GetPendingOrdersParams
Source§fn clone(&self) -> GetPendingOrdersParams
fn clone(&self) -> GetPendingOrdersParams
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 GetPendingOrdersParams
impl Debug for GetPendingOrdersParams
Source§impl<'de> Deserialize<'de> for GetPendingOrdersParams
impl<'de> Deserialize<'de> for GetPendingOrdersParams
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 GetPendingOrdersParams
impl RefUnwindSafe for GetPendingOrdersParams
impl Send for GetPendingOrdersParams
impl Sync for GetPendingOrdersParams
impl Unpin for GetPendingOrdersParams
impl UnsafeUnpin for GetPendingOrdersParams
impl UnwindSafe for GetPendingOrdersParams
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