#[repr(u32)]
pub enum Specialization {
Show 73 variants Unknown = 0, Dueling = 1, Domination = 10, Inspiration = 23, Illusions = 24, Chronomancer = 40, Chaos = 45, Mirage = 59, Virtuoso = 66, DeathMagic = 2, BloodMagic = 19, Reaper = 34, Curses = 39, SoulReaping = 50, Spite = 53, Scourge = 60, Harbinger = 64, Invocation = 3, Retribution = 9, Corruption = 14, Devastation = 15, Salvation = 12, Herald = 52, Renegade = 63, Vindicator = 69, Strength = 4, Tactics = 11, Berserker = 18, Defense = 22, Arms = 36, Discipline = 51, Spellbreaker = 61, Bladesworn = 68, Druid = 5, Marksmanship = 8, NatureMagic = 25, Skirmishing = 30, Beastmastery = 32, WildernessSurvival = 33, Soulbeast = 55, Untamed = 72, Explosives = 6, Tools = 21, Alchemy = 29, Firearms = 38, Scrapper = 43, Inventions = 47, Holosmith = 57, Mechanist = 70, Daredevil = 7, ShadowArts = 20, DeadlyArts = 28, CriticalStrikes = 35, Trickery = 44, Acrobatics = 54, Deadeye = 58, Specter = 71, Valor = 13, Radiance = 16, Dragonhunter = 27, Zeal = 42, Virtues = 46, Honor = 49, Firebrand = 62, Willbender = 65, Water = 17, Earth = 26, Fire = 31, Arcane = 37, Air = 41, Tempest = 48, Weaver = 56, Catalyst = 67,
}
Expand description

Player specialization.

Variants§

§

Unknown = 0

Unknown or invalid.

§

Dueling = 1

§

Domination = 10

§

Inspiration = 23

§

Illusions = 24

§

Chronomancer = 40

§

Chaos = 45

§

Mirage = 59

§

Virtuoso = 66

§

DeathMagic = 2

§

BloodMagic = 19

§

Reaper = 34

§

Curses = 39

§

SoulReaping = 50

§

Spite = 53

§

Scourge = 60

§

Harbinger = 64

§

Invocation = 3

§

Retribution = 9

§

Corruption = 14

§

Devastation = 15

§

Salvation = 12

§

Herald = 52

§

Renegade = 63

§

Vindicator = 69

§

Strength = 4

§

Tactics = 11

§

Berserker = 18

§

Defense = 22

§

Arms = 36

§

Discipline = 51

§

Spellbreaker = 61

§

Bladesworn = 68

§

Druid = 5

§

Marksmanship = 8

§

NatureMagic = 25

§

Skirmishing = 30

§

Beastmastery = 32

§

WildernessSurvival = 33

§

Soulbeast = 55

§

Untamed = 72

§

Explosives = 6

§

Tools = 21

§

Alchemy = 29

§

Firearms = 38

§

Scrapper = 43

§

Inventions = 47

§

Holosmith = 57

§

Mechanist = 70

§

Daredevil = 7

§

ShadowArts = 20

§

DeadlyArts = 28

§

CriticalStrikes = 35

§

Trickery = 44

§

Acrobatics = 54

§

Deadeye = 58

§

Specter = 71

§

Valor = 13

§

Radiance = 16

§

Dragonhunter = 27

§

Zeal = 42

§

Virtues = 46

§

Honor = 49

§

Firebrand = 62

§

Willbender = 65

§

Water = 17

§

Earth = 26

§

Fire = 31

§

Arcane = 37

§

Air = 41

§

Tempest = 48

§

Weaver = 56

§

Catalyst = 67

Implementations§

source§

impl Specialization

source

pub fn profession(&self) -> Profession

Returns the Profession corresponding to the specialization.

Trait Implementations§

source§

impl Clone for Specialization

source§

fn clone(&self) -> Specialization

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Specialization

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Specialization

source§

fn default() -> Specialization

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Specialization

source§

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 From<Specialization> for u32

source§

fn from(enum_value: Specialization) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Specialization

source§

fn from(number: u32) -> Self

Converts to this type from the input type.
source§

impl FromPrimitive for Specialization

§

type Primitive = u32

source§

fn from_primitive(number: Self::Primitive) -> Self

source§

impl Hash for Specialization

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Specialization

source§

fn cmp(&self, other: &Specialization) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Specialization

source§

fn eq(&self, other: &Specialization) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Specialization

source§

fn partial_cmp(&self, other: &Specialization) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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 more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for Specialization

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for Specialization

source§

impl Eq for Specialization

source§

impl StructuralPartialEq for Specialization

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,