pub struct GetAllResourcesParams {
    pub min_level: Option<u32>,
    pub max_level: Option<u32>,
    pub skill: Option<GatheringSkill>,
    pub drop: Option<String>,
    pub page: Option<u32>,
    pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_all_resources
Fields§
§min_level: Option<u32>Minimum level.
max_level: Option<u32>Maximum level.
skill: Option<GatheringSkill>Skill of resources.
drop: Option<String>Item code of the drop.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetAllResourcesParams
 
impl Clone for GetAllResourcesParams
Source§fn clone(&self) -> GetAllResourcesParams
 
fn clone(&self) -> GetAllResourcesParams
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 GetAllResourcesParams
impl RefUnwindSafe for GetAllResourcesParams
impl Send for GetAllResourcesParams
impl Sync for GetAllResourcesParams
impl Unpin for GetAllResourcesParams
impl UnwindSafe for GetAllResourcesParams
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