[][src]Struct riven::tournament_v4::TournamentCode

pub struct TournamentCode {
    pub map: String,
    pub code: String,
    pub spectators: String,
    pub region: String,
    pub provider_id: i32,
    pub team_size: i32,
    pub participants: Vec<String>,
    pub pick_type: String,
    pub tournament_id: i32,
    pub lobby_name: String,
    pub password: String,
    pub id: i32,
    pub meta_data: String,
}

TournamentCode data object. This struct is automatically generated.

Fields

map: String

The game map for the tournament code game

code: String

The tournament code.

spectators: String

The spectator mode for the tournament code game.

region: String

The tournament code's region.
(Legal values: BR, EUNE, EUW, JP, LAN, LAS, NA, OCE, PBE, RU, TR)

provider_id: i32

The provider's ID.

team_size: i32

The team size for the tournament code game.

participants: Vec<String>

The summonerIds of the participants (Encrypted)

pick_type: String

The pick mode for tournament code game.

tournament_id: i32

The tournament's ID.

lobby_name: String

The lobby name for the tournament code game.

password: String

The password for the tournament code game.

id: i32

The tournament code's ID.

meta_data: String

The metadata for tournament code.

Trait Implementations

impl Debug for TournamentCode[src]

impl Serialize for TournamentCode[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

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