Enum codeforces_api::requests::CFUserCommand[][src]

pub enum CFUserCommand {
    BlogEntries {
        handle: String,
    },
    Friends {
        only_online: Option<bool>,
    },
    Info {
        handles: Vec<String>,
    },
    RatedList {
        active_only: Option<bool>,
    },
    Rating {
        handle: String,
    },
    Status {
        handle: String,
        from: Option<i64>,
        count: Option<i64>,
    },
}

Variants

BlogEntries

Fields of BlogEntries

handle: String
Friends

Fields of Friends

only_online: Option<bool>
Info

Fields of Info

handles: Vec<String>
RatedList

Fields of RatedList

active_only: Option<bool>
Rating

Fields of Rating

handle: String
Status

Fields of Status

handle: Stringfrom: Option<i64>count: Option<i64>

Trait Implementations

impl CFAPIRequestable for CFUserCommand[src]

impl Clone for CFUserCommand[src]

impl Debug for CFUserCommand[src]

impl Eq for CFUserCommand[src]

impl PartialEq<CFUserCommand> for CFUserCommand[src]

impl StructuralEq for CFUserCommand[src]

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