[][src]Struct riven::endpoints::TournamentV4

pub struct TournamentV4<'a> { /* fields omitted */ }

TournamentV4 endpoints handle, accessed by calling tournament_v4() on a RiotApi instance.

Riot Developer API Reference

tournament-v4

Note: this struct is automatically generated.

Implementations

impl<'a> TournamentV4<'a>[src]

pub fn get_tournament_code(
    &self,
    region: Region,
    tournament_code: &str
) -> impl Future<Output = Result<TournamentCode>> + 'a
[src]

Returns the tournament code DTO associated with a tournament code string.

Parameters

  • region - Region to query.
  • tournamentCode - The tournament code string.

Riot Developer API Reference

tournament-v4.getTournamentCode

Note: this method is automatically generated.

pub fn get_lobby_events_by_code(
    &self,
    region: Region,
    tournament_code: &str
) -> impl Future<Output = Result<LobbyEventWrapper>> + 'a
[src]

Gets a list of lobby events by tournament code.

Parameters

  • region - Region to query.
  • tournamentCode - The short code to look up lobby events for

Riot Developer API Reference

tournament-v4.getLobbyEventsByCode

Note: this method is automatically generated.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for TournamentV4<'a>

impl<'a> Send for TournamentV4<'a>

impl<'a> Sync for TournamentV4<'a>

impl<'a> Unpin for TournamentV4<'a>

impl<'a> !UnwindSafe for TournamentV4<'a>

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> 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.