Struct codeforces_api::requests::CFRecentActionsCommand[][src]

pub struct CFRecentActionsCommand {
    pub max_count: i64,
}

Struct for sending recentActions requests to the Codeforces API.

Returns recent actions.

If correctly parsed, the response object will be of type responses::CFResult::CFRecentActionVec.

More details for the recentActions command can be found here.

Examples

let x = CFRecentActionsCommand {
    max_count: 3,
};

match x.get(api_key, api_secret) {
    Ok(CFResult::CFRecentActionVec(v)) => {
        // your code here
    },
    _ => {
        panic!("API request failed");
    }
}

Fields

max_count: i64

Number of recent actions to return. Can be up to 100.

Trait Implementations

impl CFAPIRequestable for CFRecentActionsCommand[src]

impl Clone for CFRecentActionsCommand[src]

impl Debug for CFRecentActionsCommand[src]

impl Eq for CFRecentActionsCommand[src]

impl PartialEq<CFRecentActionsCommand> for CFRecentActionsCommand[src]

impl StructuralEq for CFRecentActionsCommand[src]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,