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

pub struct MatchEvent {
    pub lane_type: Option<String>,
    pub skill_slot: Option<i32>,
    pub ascended_type: Option<String>,
    pub creator_id: Option<i32>,
    pub after_id: Option<i32>,
    pub event_type: Option<String>,
    pub type: String,
    pub level_up_type: Option<String>,
    pub ward_type: Option<String>,
    pub participant_id: Option<i32>,
    pub tower_type: Option<String>,
    pub item_id: Option<i32>,
    pub before_id: Option<i32>,
    pub point_captured: Option<String>,
    pub monster_type: Option<String>,
    pub monster_sub_type: Option<String>,
    pub team_id: Option<Team>,
    pub position: Option<MatchPosition>,
    pub killer_id: Option<i32>,
    pub timestamp: i64,
    pub assisting_participant_ids: Option<Vec<i32>>,
    pub building_type: Option<String>,
    pub victim_id: Option<i32>,
}

MatchEvent data object.

Fields

lane_type: Option<String>skill_slot: Option<i32>ascended_type: Option<String>creator_id: Option<i32>after_id: Option<i32>event_type: Option<String>type: String

(Legal values: CHAMPION_KILL, WARD_PLACED, WARD_KILL, BUILDING_KILL, ELITE_MONSTER_KILL, ITEM_PURCHASED, ITEM_SOLD, ITEM_DESTROYED, ITEM_UNDO, SKILL_LEVEL_UP, ASCENDED_EVENT, CAPTURE_POINT, PORO_KING_SUMMON)

level_up_type: Option<String>ward_type: Option<String>participant_id: Option<i32>tower_type: Option<String>item_id: Option<i32>before_id: Option<i32>point_captured: Option<String>monster_type: Option<String>monster_sub_type: Option<String>team_id: Option<Team>position: Option<MatchPosition>killer_id: Option<i32>timestamp: i64assisting_participant_ids: Option<Vec<i32>>building_type: Option<String>victim_id: Option<i32>

Trait Implementations

impl Debug for MatchEvent[src]

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

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