[][src]Struct riven::endpoints::AccountV1

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

AccountV1 endpoints handle, accessed by calling account_v1() on a RiotApi instance.

Riot Developer API Reference

account-v1

Note: this struct is automatically generated.

Implementations

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

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

Get account by puuid

Parameters

  • region - Region to query.
  • puuid

Riot Developer API Reference

account-v1.getByPuuid

Note: this method is automatically generated.

pub fn get_by_riot_id(
    &self,
    region: Region,
    game_name: &str,
    tag_line: &str
) -> impl Future<Output = Result<Option<Account>>> + 'a
[src]

Get account by riot id

Parameters

  • region - Region to query.
  • tagLine
  • gameName

Riot Developer API Reference

account-v1.getByRiotId

Note: this method is automatically generated.

pub fn get_active_shard(
    &self,
    region: Region,
    game: &str,
    puuid: &str
) -> impl Future<Output = Result<Option<ActiveShard>>> + 'a
[src]

Get active shard for a player

Parameters

  • region - Region to query.
  • puuid
  • game

Riot Developer API Reference

account-v1.getActiveShard

Note: this method is automatically generated.

Auto Trait Implementations

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

impl<'a> Send for AccountV1<'a>

impl<'a> Sync for AccountV1<'a>

impl<'a> Unpin for AccountV1<'a>

impl<'a> !UnwindSafe for AccountV1<'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> Instrument for T[src]

impl<T> Instrument 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.