[][src]Struct riven::endpoints::TournamentStubV4

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

TournamentStubV4 endpoints handle, accessed by calling tournament_stub_v4() on a RiotApi instance.

Riot Developer API Reference

tournament-stub-v4

Note: this struct is automatically generated.

Implementations

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

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

Gets a mock 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-stub-v4.getLobbyEventsByCode

Note: this method is automatically generated.

Auto Trait Implementations

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

impl<'a> Send for TournamentStubV4<'a>

impl<'a> Sync for TournamentStubV4<'a>

impl<'a> Unpin for TournamentStubV4<'a>

impl<'a> !UnwindSafe for TournamentStubV4<'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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,