pub struct GetAccountAchievementsParams {
pub account: String,
pub type: Option<String>,
pub completed: Option<bool>,
pub page: Option<u32>,
pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_account_achievements
Fields§
§account: StringThe character name.
type: Option<String>Type of achievements.
completed: Option<bool>Filter by completed achievements.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetAccountAchievementsParams
impl Clone for GetAccountAchievementsParams
Source§fn clone(&self) -> GetAccountAchievementsParams
fn clone(&self) -> GetAccountAchievementsParams
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 GetAccountAchievementsParams
impl RefUnwindSafe for GetAccountAchievementsParams
impl Send for GetAccountAchievementsParams
impl Sync for GetAccountAchievementsParams
impl Unpin for GetAccountAchievementsParams
impl UnwindSafe for GetAccountAchievementsParams
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