pub enum UsersSorting {
NameInternational,
NameJapanese,
Signup,
Role,
}
Expand description
Sorting options for users
Variants§
NameInternational
Sorts alphanumerically by the international name (default)
NameJapanese
Sorts alphanumerically by the Japanese name
Signup
Sorts by the signup date
Role
Sorts by the user role
Trait Implementations§
Source§impl Clone for UsersSorting
impl Clone for UsersSorting
Source§fn clone(&self) -> UsersSorting
fn clone(&self) -> UsersSorting
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 UsersSorting
impl Debug for UsersSorting
Source§impl Default for UsersSorting
impl Default for UsersSorting
Source§impl Serialize for UsersSorting
impl Serialize for UsersSorting
impl Copy for UsersSorting
Auto Trait Implementations§
impl Freeze for UsersSorting
impl RefUnwindSafe for UsersSorting
impl Send for UsersSorting
impl Sync for UsersSorting
impl Unpin for UsersSorting
impl UnwindSafe for UsersSorting
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