pub enum PlatformsSorting {
Name,
Released,
}
Expand description
Sorting options for platforms
Variants§
Name
Sorts alphanumerically by the platform name (default)
Released
Sorts by the year the platform was released
Trait Implementations§
Source§impl Clone for PlatformsSorting
impl Clone for PlatformsSorting
Source§fn clone(&self) -> PlatformsSorting
fn clone(&self) -> PlatformsSorting
Returns a copy 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 PlatformsSorting
impl Debug for PlatformsSorting
Source§impl Default for PlatformsSorting
impl Default for PlatformsSorting
Source§impl Serialize for PlatformsSorting
impl Serialize for PlatformsSorting
impl Copy for PlatformsSorting
Auto Trait Implementations§
impl Freeze for PlatformsSorting
impl RefUnwindSafe for PlatformsSorting
impl Send for PlatformsSorting
impl Sync for PlatformsSorting
impl Unpin for PlatformsSorting
impl UnwindSafe for PlatformsSorting
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