#[non_exhaustive]pub enum ManifestDiagnosticLocation {
SpecPrecombatAuras,
SpecStealthAura,
Aura {
name: String,
},
Spell {
name: String,
},
AutoAttack {
name: String,
},
TalentCompanionAuras {
talent: String,
},
TalentGatedAuraEffect {
index: usize,
},
SpellGroup {
index: usize,
},
ImpactProc {
index: usize,
},
}Expand description
Typed location of a structural manifest diagnostic.
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.
SpecPrecombatAuras
SpecStealthAura
Aura
Spell
AutoAttack
TalentCompanionAuras
TalentGatedAuraEffect
SpellGroup
ImpactProc
Trait Implementations§
Source§impl Clone for ManifestDiagnosticLocation
impl Clone for ManifestDiagnosticLocation
Source§fn clone(&self) -> ManifestDiagnosticLocation
fn clone(&self) -> ManifestDiagnosticLocation
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 ManifestDiagnosticLocation
impl Debug for ManifestDiagnosticLocation
Source§impl Display for ManifestDiagnosticLocation
impl Display for ManifestDiagnosticLocation
impl Eq for ManifestDiagnosticLocation
impl StructuralPartialEq for ManifestDiagnosticLocation
Auto Trait Implementations§
impl Freeze for ManifestDiagnosticLocation
impl RefUnwindSafe for ManifestDiagnosticLocation
impl Send for ManifestDiagnosticLocation
impl Sync for ManifestDiagnosticLocation
impl Unpin for ManifestDiagnosticLocation
impl UnsafeUnpin for ManifestDiagnosticLocation
impl UnwindSafe for ManifestDiagnosticLocation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString]. Read more