[][src]Struct riven::models::match_v4::ParticipantTimeline

pub struct ParticipantTimeline {
    pub participant_id: Option<i32>,
    pub cs_diff_per_min_deltas: Option<HashMap<String, f64>>,
    pub damage_taken_per_min_deltas: Option<HashMap<String, f64>>,
    pub role: Option<String>,
    pub damage_taken_diff_per_min_deltas: Option<HashMap<String, f64>>,
    pub xp_per_min_deltas: Option<HashMap<String, f64>>,
    pub xp_diff_per_min_deltas: Option<HashMap<String, f64>>,
    pub lane: Option<String>,
    pub creeps_per_min_deltas: Option<HashMap<String, f64>>,
    pub gold_per_min_deltas: Option<HashMap<String, f64>>,
}

ParticipantTimeline data object.

Fields

participant_id: Option<i32>cs_diff_per_min_deltas: Option<HashMap<String, f64>>

Creep score difference versus the calculated lane opponent(s) for a specified period.

damage_taken_per_min_deltas: Option<HashMap<String, f64>>

Damage taken for a specified period.

role: Option<String>

Participant's calculated role.
(Legal values: DUO, NONE, SOLO, DUO_CARRY, DUO_SUPPORT)

damage_taken_diff_per_min_deltas: Option<HashMap<String, f64>>

Damage taken difference versus the calculated lane opponent(s) for a specified period.

xp_per_min_deltas: Option<HashMap<String, f64>>

Experience change for a specified period.

xp_diff_per_min_deltas: Option<HashMap<String, f64>>

Experience difference versus the calculated lane opponent(s) for a specified period.

lane: Option<String>

Participant's calculated lane. MID and BOT are legacy values.
(Legal values: MID, MIDDLE, TOP, JUNGLE, BOT, BOTTOM)

creeps_per_min_deltas: Option<HashMap<String, f64>>

Creeps for a specified period.

gold_per_min_deltas: Option<HashMap<String, f64>>

Gold for a specified period.

Trait Implementations

impl Debug for ParticipantTimeline[src]

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

impl Serialize for ParticipantTimeline[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, 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.