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