pub struct GetCharactersLeaderboardParams {
    pub sort: Option<CharacterLeaderboardType>,
    pub name: Option<String>,
    pub page: Option<u32>,
    pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_characters_leaderboard
Fields§
§sort: Option<CharacterLeaderboardType>Sort of character leaderboards.
name: Option<String>Character name.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetCharactersLeaderboardParams
 
impl Clone for GetCharactersLeaderboardParams
Source§fn clone(&self) -> GetCharactersLeaderboardParams
 
fn clone(&self) -> GetCharactersLeaderboardParams
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 GetCharactersLeaderboardParams
impl RefUnwindSafe for GetCharactersLeaderboardParams
impl Send for GetCharactersLeaderboardParams
impl Sync for GetCharactersLeaderboardParams
impl Unpin for GetCharactersLeaderboardParams
impl UnwindSafe for GetCharactersLeaderboardParams
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