[][src]Struct google_classroom1::GradeHistory

pub struct GradeHistory {
    pub grade_timestamp: Option<String>,
    pub actor_user_id: Option<String>,
    pub points_earned: Option<f64>,
    pub max_points: Option<f64>,
    pub grade_change_type: Option<String>,
}

The history of each grade on this submission.

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

Fields

grade_timestamp: Option<String>

When the grade of the submission was changed.

actor_user_id: Option<String>

The teacher who made the grade change.

points_earned: Option<f64>

The numerator of the grade at this time in the submission grade history.

max_points: Option<f64>

The denominator of the grade at this time in the submission grade history.

grade_change_type: Option<String>

The type of grade change at this time in the submission grade history.

Trait Implementations

impl Clone for GradeHistory[src]

impl Debug for GradeHistory[src]

impl Default for GradeHistory[src]

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

impl Part for GradeHistory[src]

impl Serialize for GradeHistory[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.

impl<T> Typeable for T where
    T: Any