pub enum UserRankEnum {
Show 26 variants
AbsoluteBeginner,
Beginner,
Inexperienced,
Rookie,
Novice,
BelowAverage,
Average,
Reasonable,
AboveAverage,
Competent,
HighlyCompetent,
Veteran,
Distinguished,
HighlyDistinguished,
Professional,
Star,
Master,
Outstanding,
Celebrity,
Supreme,
Idolized,
Champion,
Heroic,
Legendary,
Elite,
Invincible,
}
Variants§
AbsoluteBeginner
Beginner
Inexperienced
Rookie
Novice
BelowAverage
Average
Reasonable
AboveAverage
Competent
HighlyCompetent
Veteran
Distinguished
HighlyDistinguished
Professional
Star
Master
Outstanding
Celebrity
Supreme
Idolized
Champion
Heroic
Legendary
Elite
Invincible
Trait Implementations§
Source§impl Clone for UserRankEnum
impl Clone for UserRankEnum
Source§fn clone(&self) -> UserRankEnum
fn clone(&self) -> UserRankEnum
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 UserRankEnum
impl Debug for UserRankEnum
Source§impl<'de> Deserialize<'de> for UserRankEnum
impl<'de> Deserialize<'de> for UserRankEnum
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for UserRankEnum
impl Display for UserRankEnum
Source§impl From<UserRankEnum> for Rank
impl From<UserRankEnum> for Rank
Source§fn from(value: UserRankEnum) -> Self
fn from(value: UserRankEnum) -> Self
Converts to this type from the input type.
Source§impl Hash for UserRankEnum
impl Hash for UserRankEnum
Source§impl PartialEq for UserRankEnum
impl PartialEq for UserRankEnum
impl Copy for UserRankEnum
impl Eq for UserRankEnum
impl StructuralPartialEq for UserRankEnum
Auto Trait Implementations§
impl Freeze for UserRankEnum
impl RefUnwindSafe for UserRankEnum
impl Send for UserRankEnum
impl Sync for UserRankEnum
impl Unpin for UserRankEnum
impl UnwindSafe for UserRankEnum
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