Struct ezomyte::League [] [src]

pub struct League { /* fields omitted */ }

Main league in Path of Exile.

Those are the leagues you can select (or used to be able to select, for historical data) in the character screen.

Methods

impl League
[src]

[src]

Standard league (permanent softcore non-SSF).

[src]

Hardcore league (permanent non-SSF).

[src]

Temporary league (softcore non-SSF).

[src]

Temporary hardcore league (non-SSF).

[src]

SSF league (permanent softcore).

[src]

Hardcore SSF league (permanent).

[src]

Temporary SSF league (softcore).

[src]

Temporary hardcore SSF league.

impl League
[src]

[src]

Alias for standard.

[src]

Alias for standard.

[src]

Alias for hardcore.

[src]

Alias for temporary.

[src]

Alias for temporary.

[src]

Alias for temporary_hardcore.

[src]

Alias for hardcore_ssf.

[src]

Alias for temporary_ssf.

[src]

Alias for temporary_hardcore_ssf.

impl League
[src]

[src]

Add season name to a League.

Example: League::hc().in_season("Abyss")

impl League
[src]

[src]

Name of the league's season, if known.

A season is basically the unique identifying part of all temporary league names. The "Abyss" season, for example, consists of leagues called "Abyss" (softcore non-SSF), "Hardcore Abyss", etc.

Permanent leagues are not part of any season.

[src]

Whether this is a temporary league.

[src]

Whether this is a hardcore league.

[src]

Whether this is a solo self-found league.

Trait Implementations

impl Clone for League
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for League
[src]

[src]

Returns the "default value" for a type. Read more

impl PartialEq for League
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Debug for League
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for League
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for League
[src]

The associated error which can be returned from parsing.

[src]

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

impl<'de> Deserialize<'de> for League
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for League

impl Sync for League