[][src]Struct riven::endpoints::TftSummonerV1

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

TftSummonerV1 endpoints handle, accessed by calling tft_summoner_v1() on a RiotApi instance.

Riot Developer API Reference

tft-summoner-v1

Note: this struct is automatically generated.

Implementations

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

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

Get a summoner by account ID.

Parameters

  • region - Region to query.
  • encryptedAccountId

Riot Developer API Reference

tft-summoner-v1.getByAccountId

Note: this method is automatically generated.

pub fn get_by_summoner_name(
    &self,
    region: Region,
    summoner_name: &str
) -> impl Future<Output = Result<Option<Summoner>>> + 'a
[src]

Get a summoner by summoner name.

Parameters

  • region - Region to query.
  • summonerName - Summoner Name

Riot Developer API Reference

tft-summoner-v1.getBySummonerName

Note: this method is automatically generated.

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

Get a summoner by PUUID.

Parameters

  • region - Region to query.
  • encryptedPUUID - Summoner ID

Riot Developer API Reference

tft-summoner-v1.getByPUUID

Note: this method is automatically generated.

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

Get a summoner by summoner ID.

Parameters

  • region - Region to query.
  • encryptedSummonerId - Summoner ID

Riot Developer API Reference

tft-summoner-v1.getBySummonerId

Note: this method is automatically generated.

Auto Trait Implementations

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

impl<'a> Send for TftSummonerV1<'a>

impl<'a> Sync for TftSummonerV1<'a>

impl<'a> Unpin for TftSummonerV1<'a>

impl<'a> !UnwindSafe for TftSummonerV1<'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>,