Struct ezomyte::Stash [] [src]

pub struct Stash {
    pub id: String,
    pub league: League,
    pub label: Label,
    pub type_: StashType,
    pub account: String,
    pub last_character: Option<String>,
    pub items: Vec<StashedItem>,
}

Stash tab returned by the API.

Fields

Unique ID of the stash tab.

League which the stash tab is in.

Label of the stash tab.

Note that some labels like "~b/o 1 chaos" are special and indicate the price for every item in the tab. Those labels are interpreted automatically.

Type of the stash tab.

Name of the player account with this stash tab,

Name of the last character logged in on the stash's account, if known.

Items stored in the stash tab.

Trait Implementations

impl Debug for Stash
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Stash

impl !Sync for Stash