#[non_exhaustive]pub enum DifficultyKey {
Lfr,
Normal,
Heroic,
Mythic,
MythicPlusTwoThree,
MythicPlusFour,
MythicPlusFive,
MythicPlusSixSeven,
MythicPlusEightNine,
MythicPlusTenPlus,
MythicPlusVaultBr,
}Expand description
Per-difficulty key; wire form is exact addon PascalCase strings.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Lfr
Normal
Heroic
Mythic
MythicPlusTwoThree
MythicPlusFour
MythicPlusFive
MythicPlusSixSeven
MythicPlusEightNine
MythicPlusTenPlus
MythicPlusVaultBr
Implementations§
Trait Implementations§
Source§impl Clone for DifficultyKey
impl Clone for DifficultyKey
Source§fn clone(&self) -> DifficultyKey
fn clone(&self) -> DifficultyKey
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 DifficultyKey
impl Debug for DifficultyKey
Source§impl Default for DifficultyKey
impl Default for DifficultyKey
Source§fn default() -> DifficultyKey
fn default() -> DifficultyKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DifficultyKey
impl<'de> Deserialize<'de> for DifficultyKey
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 Hash for DifficultyKey
impl Hash for DifficultyKey
Source§impl JsonSchema for DifficultyKey
impl JsonSchema for DifficultyKey
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for DifficultyKey
impl PartialEq for DifficultyKey
Source§impl Serialize for DifficultyKey
impl Serialize for DifficultyKey
impl Copy for DifficultyKey
impl Eq for DifficultyKey
impl StructuralPartialEq for DifficultyKey
Auto Trait Implementations§
impl Freeze for DifficultyKey
impl RefUnwindSafe for DifficultyKey
impl Send for DifficultyKey
impl Sync for DifficultyKey
impl Unpin for DifficultyKey
impl UnsafeUnpin for DifficultyKey
impl UnwindSafe for DifficultyKey
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