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