[][src]Struct brawl_api::model::players::player::PlayerBrawlerStat

pub struct PlayerBrawlerStat {
    pub star_powers: Vec<StarPower>,
    pub id: usize,
    pub rank: u16,
    pub trophies: usize,
    pub highest_trophies: usize,
    pub power: u8,
    pub name: String,
}

A struct containing information about a player's brawler (see Player.brawlers).

Fields

star_powers: Vec<StarPower>

A vector containing the brawler's star powers (represented by StarPower), if any (otherwise empty vector).

id: usize

The brawler's id (an arbitrary number).

rank: u16

The brawler's rank.

trophies: usize

The brawler's trophies.

highest_trophies: usize

The brawler's highest trophies amount.

power: u8

The brawler's power (1-10).

name: String

The brawler's name.

Trait Implementations

impl Clone for PlayerBrawlerStat[src]

impl Debug for PlayerBrawlerStat[src]

impl Default for PlayerBrawlerStat[src]

fn default() -> PlayerBrawlerStat[src]

Initializes a new BrawlerStat instance, with default values.

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

impl Eq for PlayerBrawlerStat[src]

impl FetchFrom<PlayerBrawlerStat> for Brawler[src]

fn fetch_from(client: &Client, p_brawler: &PlayerBrawlerStat) -> Result<Brawler>[src]

(Sync) Attempts to fetch a Brawler from an existing PlayerBrawlerStat instance.

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

(Async) Attempts to fetch a Brawler from an existing PlayerBrawlerStat instance.

impl Hash for PlayerBrawlerStat[src]

impl PartialEq<PlayerBrawlerStat> for PlayerBrawlerStat[src]

impl Serialize for PlayerBrawlerStat[src]

impl StructuralEq for PlayerBrawlerStat[src]

impl StructuralPartialEq for PlayerBrawlerStat[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.