Enum ffxiv_types::jobs::non_combat::NonCombatJob[][src]

pub enum NonCombatJob {
    Botanist,
    Fisher,
    Miner,
    Alchemist,
    Armorer,
    Blacksmith,
    Carpenter,
    Culinarian,
    Goldsmith,
    Leatherworker,
    Weaver,
}

The Disciple of the Land and Disciple of the Hand jobs available in the game.

Variants

Methods

impl NonCombatJob
[src]

ALL: [NonCombatJob; 11] = [NonCombatJob::Botanist, NonCombatJob::Fisher, NonCombatJob::Miner,
 NonCombatJob::Alchemist, NonCombatJob::Armorer, NonCombatJob::Blacksmith,
 NonCombatJob::Carpenter, NonCombatJob::Culinarian, NonCombatJob::Goldsmith,
 NonCombatJob::Leatherworker, NonCombatJob::Weaver]

Trait Implementations

impl Debug for NonCombatJob
[src]

Formats the value using the given formatter. Read more

impl Clone for NonCombatJob
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NonCombatJob
[src]

impl FromStr for NonCombatJob
[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 NonCombatJob
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations