[][src]Struct codeforces::Submission

pub struct Submission {
    pub id: u64,
    pub contest_id: Option<u64>,
    pub creation_time_seconds: u64,
    pub relative_time_seconds: Option<u64>,
    pub problem: Problem,
    pub author: Party,
    pub programming_language: String,
    pub verdict: Option<Verdict>,
    pub test_set: SubmissionTestSet,
    pub passed_test_count: u64,
    pub time_consumed_millis: u64,
    pub memory_consumed_bytes: u64,
}

Represents a submission.

https://codeforces.com/apiHelp/objects#Submission

Fields

id: u64contest_id: Option<u64>creation_time_seconds: u64relative_time_seconds: Option<u64>problem: Problemauthor: Partyprogramming_language: Stringverdict: Option<Verdict>test_set: SubmissionTestSetpassed_test_count: u64time_consumed_millis: u64memory_consumed_bytes: u64

Trait Implementations

impl Clone for Submission[src]

impl Debug for Submission[src]

impl<'de> Deserialize<'de> for Submission[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, 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.