pub struct GetGeSellHistoryByCodeParams {
    pub code: String,
    pub seller: Option<String>,
    pub buyer: Option<String>,
    pub page: Option<u32>,
    pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_ge_sell_history_by_code
Fields§
§code: StringThe code of the item.
seller: Option<String>The seller (account name) of the item.
buyer: Option<String>The buyer (account name) of the item.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetGeSellHistoryByCodeParams
 
impl Clone for GetGeSellHistoryByCodeParams
Source§fn clone(&self) -> GetGeSellHistoryByCodeParams
 
fn clone(&self) -> GetGeSellHistoryByCodeParams
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 GetGeSellHistoryByCodeParams
impl RefUnwindSafe for GetGeSellHistoryByCodeParams
impl Send for GetGeSellHistoryByCodeParams
impl Sync for GetGeSellHistoryByCodeParams
impl Unpin for GetGeSellHistoryByCodeParams
impl UnwindSafe for GetGeSellHistoryByCodeParams
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