[][src]Struct brawl_api::model::rankings::clubs::ClubRanking

pub struct ClubRanking {
    pub tag: String,
    pub name: String,
    pub trophies: usize,
    pub rank: u8,
    pub member_count: usize,
}

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

Fields

tag: String

The club's tag.

name: String

The club's name.

trophies: usize

The club's current trophies.

rank: u8

The club's current rank in the leaderboard.

member_count: usize

The amount of members in this club.

Trait Implementations

impl Clone for ClubRanking[src]

impl Debug for ClubRanking[src]

impl Default for ClubRanking[src]

fn default() -> ClubRanking[src]

Returns an instance of ClubRanking with initial values.

Examples

use brawl_api::ClubRanking;

assert_eq!(
    ClubRanking::default(),
    ClubRanking {
        tag: String::from(""),
        name: String::from(""),
        trophies: 0,
        rank: 1,
        member_count: 0,
    }
);

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

impl Eq for ClubRanking[src]

impl FetchFrom<ClubRanking> for Club[src]

fn fetch_from(client: &Client, c_ranking: &ClubRanking) -> Result<Club>[src]

(Sync) Fetches a Club using data from a ClubRanking object.

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

(Async) Fetches a Club using data from a ClubRanking object.

impl Hash for ClubRanking[src]

impl Ord for ClubRanking[src]

fn cmp(&self, other: &ClubRanking) -> Ordering[src]

Compares and determines which ClubRanking has a higher rank (i.e., smaller rank number).

Examples

use brawl_api::{ClubLeaderboard, traits::*};


let leaderboard: ClubLeaderboard;


// after fetching the leaderboard (see examples in ClubLeaderboard::fetch)...

let (club_1, club_2) = (&leaderboard[0], &leaderboard[1]);
// generally, the first club is the one with 'rank' field equal to 1 and the second,
// 'rank' field equal to 2, so assume this is true (the API generally sends them sorted,
// but, to guarantee strictness, one can 'leaderboard.sort()'.

assert!(club_1 > club_2)  // smaller rank number = higher position

impl PartialEq<ClubRanking> for ClubRanking[src]

impl PartialOrd<ClubRanking> for ClubRanking[src]

fn partial_cmp(&self, other: &ClubRanking) -> Option<Ordering>[src]

Compares and determines which ClubRanking has a higher rank (i.e., smaller rank number).

Examples

use brawl_api::{ClubLeaderboard, traits::*};


let leaderboard: ClubLeaderboard;


// after fetching the leaderboard (see examples in ClubLeaderboard::fetch)...

let (club_1, club_2) = (&leaderboard[0], &leaderboard[1]);
// generally, the first club is the one with 'rank' field equal to 1 and the second,
// 'rank' field equal to 2, so assume this is true (the API generally sends them sorted,
// but, to guarantee strictness, one can 'leaderboard.sort()'.

assert!(club_1 > club_2)  // smaller rank number = higher position

impl Serialize for ClubRanking[src]

impl StructuralEq for ClubRanking[src]

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