Struct poirebot_licorice::models::tournament::Simul[][src]

pub struct Simul {
    pub full_name: String,
    pub host: LightUser,
    pub id: String,
    pub is_created: bool,
    pub is_finished: bool,
    pub is_running: bool,
    pub name: String,
    pub nb_applicants: u16,
    pub nb_pairings: u8,
    pub text: String,
    pub variants: Vec<Perf>,
}

Records of current simultaneous exhibitions

Fields

full_name: Stringhost: LightUserid: Stringis_created: boolis_finished: boolis_running: boolname: Stringnb_applicants: u16nb_pairings: u8text: Stringvariants: Vec<Perf>

Trait Implementations

impl Clone for Simul[src]

impl Debug for Simul[src]

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

impl Serialize for Simul[src]

Auto Trait Implementations

impl RefUnwindSafe for Simul

impl Send for Simul

impl Sync for Simul

impl Unpin for Simul

impl UnwindSafe for Simul

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, 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.