pub enum LevelsSorting {
Name,
Pos,
}Expand description
Sorting options for levels
Variants§
Name
Sorts alphanumerically by the level name
Pos
Sorts by the order defined by the game moderator (default)
Trait Implementations§
Source§impl Clone for LevelsSorting
impl Clone for LevelsSorting
Source§fn clone(&self) -> LevelsSorting
fn clone(&self) -> LevelsSorting
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 LevelsSorting
impl Debug for LevelsSorting
Source§impl Default for LevelsSorting
impl Default for LevelsSorting
Source§impl Serialize for LevelsSorting
impl Serialize for LevelsSorting
impl Copy for LevelsSorting
Auto Trait Implementations§
impl Freeze for LevelsSorting
impl RefUnwindSafe for LevelsSorting
impl Send for LevelsSorting
impl Sync for LevelsSorting
impl Unpin for LevelsSorting
impl UnwindSafe for LevelsSorting
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