pub struct GetAllNpcItemsParams {
    pub code: Option<String>,
    pub npc: Option<String>,
    pub currency: Option<String>,
    pub page: Option<u32>,
    pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_all_npc_items
Fields§
§code: Option<String>Item code.
npc: Option<String>NPC code.
currency: Option<String>Currency code.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetAllNpcItemsParams
 
impl Clone for GetAllNpcItemsParams
Source§fn clone(&self) -> GetAllNpcItemsParams
 
fn clone(&self) -> GetAllNpcItemsParams
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 GetAllNpcItemsParams
impl RefUnwindSafe for GetAllNpcItemsParams
impl Send for GetAllNpcItemsParams
impl Sync for GetAllNpcItemsParams
impl Unpin for GetAllNpcItemsParams
impl UnwindSafe for GetAllNpcItemsParams
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