[][src]Struct brawl_api::model::rankings::players::PlayerRanking

pub struct PlayerRanking {
    pub club: PlayerRankingClub,
    pub tag: String,
    pub name: String,
    pub trophies: usize,
    pub rank: u8,
    pub name_color: u64,
}

Represents a player's ranking, based on a regional or global leaderboard. To obtain the player's full data (a Player instance), see Player::fetch_from.

Fields

club: PlayerRankingClub

The club the player is in - at the moment, only its name is available for this data model. To convert to a full [Club] object, see the PlayerRankingClub docs.

tag: String

The player's tag.

name: String

The player's name.

trophies: usize

The player's trophies.

rank: u8

The player's rank in the leaderboard.

name_color: u64

The player's name color. Defaults to 0xffffff (white).

Trait Implementations

impl Clone for PlayerRanking[src]

impl Debug for PlayerRanking[src]

impl<'de> Deserialize<'de> for PlayerRanking[src]

impl Eq for PlayerRanking[src]

impl FetchFrom<PlayerRanking> for Player[src]

fn fetch_from(client: &Client, p_ranking: &PlayerRanking) -> Result<Player>[src]

(Sync) Fetches a Player using data from a PlayerRanking object.

fn a_fetch_from<'life0, 'life1, 'async_trait>(
    client: &'life0 Client,
    p_ranking: &'life1 PlayerRanking
) -> Pin<Box<dyn Future<Output = Result<Player>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait, 
[src]

(Async) Fetches a Player using data from a PlayerRanking object.

impl Hash for PlayerRanking[src]

impl PartialEq<PlayerRanking> for PlayerRanking[src]

impl Serialize for PlayerRanking[src]

impl StructuralEq for PlayerRanking[src]

impl StructuralPartialEq for PlayerRanking[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> FetchFrom<T> for T where
    T: Clone + Send + Sync
[src]

fn fetch_from(&Client, &T) -> Result<T, Error>[src]

(Sync) Returns a copy of the current instance when attempting to fetch from itself. In order to re-fetch, see Refetchable.

Errors

Never errors; is only a Result in order to match the trait signature.

fn a_fetch_from<'life0, 'life1, 'async_trait>(
    &'life0 Client,
    &'life1 T
) -> Pin<Box<dyn Future<Output = Result<T, Error>> + 'async_trait + Send>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    T: 'async_trait, 
[src]

(Async) Returns a copy of the current instance when attempting to fetch from itself. In order to re-fetch, see Refetchable.

Errors

Never errors; is only a Result in order to match the trait signature.

impl<T, U> FetchInto<U> for T where
    T: Sync + Send,
    U: FetchFrom<T> + Sync + Send
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.