[][src]Struct riven::endpoints::ChampionV3

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

ChampionV3 endpoints handle, accessed by calling champion_v3() on a RiotApi instance.

Riot Developer API Reference

champion-v3

Note: this struct is automatically generated.

Implementations

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

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

Returns champion rotations, including free-to-play and low-level free-to-play rotations (REST)

Parameters

  • region - Region to query.

Riot Developer API Reference

champion-v3.getChampionInfo

Note: this method is automatically generated.

Auto Trait Implementations

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

impl<'a> Send for ChampionV3<'a>

impl<'a> Sync for ChampionV3<'a>

impl<'a> Unpin for ChampionV3<'a>

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