#[repr(u32)]pub enum Grade {
Civilian,
Freelance,
Mercenary,
Commando,
Assassin,
Elite,
}
Expand description
Grade.
Variants§
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Grade
impl<'de> Deserialize<'de> for Grade
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 Ord for Grade
impl Ord for Grade
source§impl PartialEq<Grade> for Grade
impl PartialEq<Grade> for Grade
source§impl PartialOrd<Grade> for Grade
impl PartialOrd<Grade> for Grade
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TryFrom<u32> for Grade
impl TryFrom<u32> for Grade
§type Error = TryFromPrimitiveError<Grade>
type Error = TryFromPrimitiveError<Grade>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for Grade
impl TryFromPrimitive for Grade
impl Copy for Grade
impl Eq for Grade
impl StructuralEq for Grade
impl StructuralPartialEq for Grade
Auto Trait Implementations§
impl RefUnwindSafe for Grade
impl Send for Grade
impl Sync for Grade
impl Unpin for Grade
impl UnwindSafe for Grade
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