[][src]Struct raider_io::CharacterDetails

pub struct CharacterDetails {
    pub name: String,
    pub race: Race,
    pub class: Class,
    pub active_spec_name: Spec,
    pub active_spec_role: Role,
    pub gender: Gender,
    pub faction: Faction,
    pub region: Region,
    pub realm: String,
    pub profile_url: String,
    pub achievement_points: u64,
    pub honorable_kills: u64,
    pub thumbnail_url: String,
    pub gear: Option<Gear>,
    pub guild: Option<Guild>,
    pub raid_progression: Option<RaidProgression>,
    pub mythic_plus_ranks: Option<MythicPlusRanks>,
    pub mythic_plus_scores_by_season: Option<Vec<MythicPlusScores>>,
    pub mythic_plus_recent_runs: Option<Vec<KeystoneRun>>,
    pub mythic_plus_best_runs: Option<Vec<KeystoneRun>>,
    pub mythic_plus_highest_level_runs: Option<Vec<KeystoneRun>>,
    pub mythic_plus_weekly_highest_level_runs: Option<Vec<KeystoneRun>>,
    pub mythic_plus_previous_weekly_highest_level_runs: Option<Vec<KeystoneRun>>,
    pub previous_mythic_plus_ranks: Option<MythicPlusRanks>,
}

Fields

name: Stringrace: Raceclass: Classactive_spec_name: Specactive_spec_role: Rolegender: Genderfaction: Factionregion: Regionrealm: Stringprofile_url: Stringachievement_points: u64honorable_kills: u64thumbnail_url: Stringgear: Option<Gear>guild: Option<Guild>raid_progression: Option<RaidProgression>mythic_plus_ranks: Option<MythicPlusRanks>mythic_plus_scores_by_season: Option<Vec<MythicPlusScores>>mythic_plus_recent_runs: Option<Vec<KeystoneRun>>mythic_plus_best_runs: Option<Vec<KeystoneRun>>mythic_plus_highest_level_runs: Option<Vec<KeystoneRun>>mythic_plus_weekly_highest_level_runs: Option<Vec<KeystoneRun>>mythic_plus_previous_weekly_highest_level_runs: Option<Vec<KeystoneRun>>previous_mythic_plus_ranks: Option<MythicPlusRanks>

Trait Implementations

impl Clone for CharacterDetails[src]

impl Debug for CharacterDetails[src]

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

impl Serialize for CharacterDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.