Enum ffxiv_types::jobs::classification::Classification[][src]

pub enum Classification {
    War,
    Magic,
    Land,
    Hand,
}

The classification of jobs available in the game.

{War, Magic} refer to Job, while {Land, Hand} refer to NonCombatJob.

Variants

Methods

impl Classification
[src]

ALL: [Classification; 4] = [Classification::War, Classification::Magic, Classification::Land,
 Classification::Hand]

Trait Implementations

impl Debug for Classification
[src]

Formats the value using the given formatter. Read more

impl Clone for Classification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Classification
[src]

impl FromStr for Classification
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Display for Classification
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations