pub enum GamesSorting {
NameInternational,
NameJapanese,
Abbreviation,
Released,
Created,
Similarity,
}
Expand description
Sorting options for games
Variants§
NameInternational
Sorts alphanumerically by the international name (default)
NameJapanese
Sorts alphanumerically by the Japanese name
Abbreviation
Sorts alphanumerically by the abbreviation
Released
Sorts by the release date
Created
Sorts by the date the game was added to speedrun.com
Similarity
Sorts by string similarity. Only available when searching games by name (default when searching by name)
Trait Implementations§
Source§impl Clone for GamesSorting
impl Clone for GamesSorting
Source§fn clone(&self) -> GamesSorting
fn clone(&self) -> GamesSorting
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GamesSorting
impl Debug for GamesSorting
Source§impl Serialize for GamesSorting
impl Serialize for GamesSorting
impl Copy for GamesSorting
Auto Trait Implementations§
impl Freeze for GamesSorting
impl RefUnwindSafe for GamesSorting
impl Send for GamesSorting
impl Sync for GamesSorting
impl Unpin for GamesSorting
impl UnwindSafe for GamesSorting
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