[][src]Struct riven::models::tft_match_v1::Info

pub struct Info {
    pub game_datetime: i64,
    pub game_length: f32,
    pub game_variation: Option<String>,
    pub game_version: String,
    pub participants: Vec<Participant>,
    pub queue_id: i32,
    pub tft_set_number: i32,
}

Info data object.

Fields

game_datetime: i64

Unix timestamp.

game_length: f32

Game length in seconds.

game_variation: Option<String>

Game variation enum, i.e. "TFT3_GameVariation_BigLittleLegends", missing from official Riot API docs.

game_version: String

Game client version.

participants: Vec<Participant>

Participants.

queue_id: i32

Please refer to the League of Legends documentation.

tft_set_number: i32

Teamfight Tactics set number.

Trait Implementations

impl Debug for Info[src]

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

impl Serialize for Info[src]

Auto Trait Implementations

impl RefUnwindSafe for Info

impl Send for Info

impl Sync for Info

impl Unpin for Info

impl UnwindSafe for Info

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.