Enum codeforces_api::requests::CFContestCommand[][src]

pub enum CFContestCommand {
    Hacks {
        contest_id: i64,
    },
    List {
        gym: Option<bool>,
    },
    RatingChanges {
        contest_id: i64,
    },
    Standings {
        contest_id: i64,
        from: Option<i64>,
        count: Option<i64>,
        handles: Option<Vec<String>>,
        room: Option<i64>,
        show_unofficial: Option<bool>,
    },
    Status {
        contest_id: i64,
        handle: Option<String>,
        from: Option<i64>,
        count: Option<i64>,
    },
}

Variants

Hacks

Fields of Hacks

contest_id: i64
List

Fields of List

gym: Option<bool>
RatingChanges

Fields of RatingChanges

contest_id: i64
Standings

Fields of Standings

contest_id: i64from: Option<i64>count: Option<i64>handles: Option<Vec<String>>room: Option<i64>show_unofficial: Option<bool>
Status

Fields of Status

contest_id: i64handle: Option<String>from: Option<i64>count: Option<i64>

Trait Implementations

impl CFAPIRequestable for CFContestCommand[src]

impl Clone for CFContestCommand[src]

impl Debug for CFContestCommand[src]

impl Eq for CFContestCommand[src]

impl PartialEq<CFContestCommand> for CFContestCommand[src]

impl StructuralEq for CFContestCommand[src]

impl StructuralPartialEq for CFContestCommand[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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> Same<T> for T

type Output = T

Should always be Self

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.