Enum ffxiv_types::roles::Role[][src]

pub enum Role {
    Dps,
    Healer,
    Tank,
}

The roles available in the game.

Each Job has a role attached to it.

Variants

Methods

impl Role
[src]

ALL: [Role; 3] = [Role::Dps, Role::Healer, Role::Tank]

Trait Implementations

impl Debug for Role
[src]

Formats the value using the given formatter. Read more

impl Clone for Role
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Role
[src]

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Role

impl Sync for Role