[][src]Struct licoricedev::models::tournament::PlayerStandings

pub struct PlayerStandings {
    pub rank: u16,
    pub score: u32,
    pub tiebreak: Option<f32>,
    pub rating: u16,
    pub username: String,
    pub sheet: Option<Sheet>,
    pub title: Option<String>,
    pub provisional: Option<bool>,
    pub withdraw: Option<bool>,
    pub absent: Option<bool>,
    pub counts: Option<Counts>,
    pub performance: Option<u16>,
    pub team: Option<String>,
}

Report card for tournament participants

Fields

rank: u16score: u32tiebreak: Option<f32>rating: u16username: Stringsheet: Option<Sheet>title: Option<String>provisional: Option<bool>withdraw: Option<bool>absent: Option<bool>counts: Option<Counts>performance: Option<u16>team: Option<String>

Trait Implementations

impl Clone for PlayerStandings[src]

impl Debug for PlayerStandings[src]

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

impl Serialize for PlayerStandings[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: for<'de> Deserialize<'de>, 
[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> 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.