pub struct GetGeSellHistoryParams {
pub id: Option<String>,
pub code: Option<String>,
pub page: Option<u32>,
pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_ge_sell_history
Fields§
§id: Option<String>Order ID to search in your history.
code: Option<String>Item to search in your history.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetGeSellHistoryParams
impl Clone for GetGeSellHistoryParams
Source§fn clone(&self) -> GetGeSellHistoryParams
fn clone(&self) -> GetGeSellHistoryParams
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 moreAuto Trait Implementations§
impl Freeze for GetGeSellHistoryParams
impl RefUnwindSafe for GetGeSellHistoryParams
impl Send for GetGeSellHistoryParams
impl Sync for GetGeSellHistoryParams
impl Unpin for GetGeSellHistoryParams
impl UnwindSafe for GetGeSellHistoryParams
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