pub enum SeriesSorting {
NameInternational,
NameJapanese,
Abbreviation,
Created,
}Expand description
Sorting options for game series
Variants§
NameInternational
Sorts alphanumerically by the international name (default)
NameJapanese
Sorts alphanumerically by the Japanese name
Abbreviation
Sorts alphanumerically by the abbreviation
Created
Sorts by the date the series was added to speedrun.com
Trait Implementations§
Source§impl Clone for SeriesSorting
impl Clone for SeriesSorting
Source§fn clone(&self) -> SeriesSorting
fn clone(&self) -> SeriesSorting
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 moreSource§impl Debug for SeriesSorting
impl Debug for SeriesSorting
Source§impl Default for SeriesSorting
impl Default for SeriesSorting
Source§impl Serialize for SeriesSorting
impl Serialize for SeriesSorting
impl Copy for SeriesSorting
Auto Trait Implementations§
impl Freeze for SeriesSorting
impl RefUnwindSafe for SeriesSorting
impl Send for SeriesSorting
impl Sync for SeriesSorting
impl Unpin for SeriesSorting
impl UnwindSafe for SeriesSorting
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