Struct google_classroom1::SubmissionHistory[][src]

pub struct SubmissionHistory {
    pub state_history: Option<StateHistory>,
    pub grade_history: Option<GradeHistory>,
}

The history of the submission. This currently includes state and grade histories.

This type is not used in any activity, and only used as part of another schema.

Fields

The state history information of the submission, if present.

The grade history information of the submission, if present.

Trait Implementations

impl Default for SubmissionHistory
[src]

Returns the "default value" for a type. Read more

impl Clone for SubmissionHistory
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SubmissionHistory
[src]

Formats the value using the given formatter. Read more

impl Part for SubmissionHistory
[src]

Auto Trait Implementations