Struct codeforces_api::responses::CFSubmission[][src]

pub struct CFSubmission {
    pub id: i64,
    pub contest_id: Option<i64>,
    pub creation_time_seconds: i64,
    pub relative_time_seconds: Option<i64>,
    pub problem: CFProblem,
    pub author: CFParty,
    pub programming_language: String,
    pub verdict: Option<CFSubmissionVerdict>,
    pub testset: CFTestset,
    pub passed_test_count: i64,
    pub time_consumed_millis: i64,
    pub memory_consumed_bytes: i64,
    pub points: Option<f64>,
}

Fields

id: i64contest_id: Option<i64>creation_time_seconds: i64relative_time_seconds: Option<i64>problem: CFProblemauthor: CFPartyprogramming_language: Stringverdict: Option<CFSubmissionVerdict>testset: CFTestsetpassed_test_count: i64time_consumed_millis: i64memory_consumed_bytes: i64points: Option<f64>

Trait Implementations

impl Clone for CFSubmission[src]

impl Debug for CFSubmission[src]

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

impl Display for CFSubmission[src]

impl PartialEq<CFSubmission> for CFSubmission[src]

impl Serialize for CFSubmission[src]

impl StructuralPartialEq for CFSubmission[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> 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> ToString for T where
    T: Display + ?Sized
[src]

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.