pub enum GradingProgress {
Failed,
NotReady,
PendingManual,
Pending,
FullyGraded,
}
Variants§
Failed
The grading could not complete.
NotReady
There is no grading process occurring; for example, the student has not yet made any submission.
PendingManual
Final Grade is pending, and it does require human intervention; if a Score value is present, it indicates the current value is partial and may be updated during the manual grading.
Pending
Final Grade is pending, but does not require manual intervention; if a Score value is present, it indicates the current value is partial and may be updated.
FullyGraded
The grading process is completed; the score value, if any, represents the current Final Grade;
Trait Implementations§
Source§impl Clone for GradingProgress
impl Clone for GradingProgress
Source§fn clone(&self) -> GradingProgress
fn clone(&self) -> GradingProgress
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GradingProgress
impl Debug for GradingProgress
Source§impl<'de> Deserialize<'de> for GradingProgress
impl<'de> Deserialize<'de> for GradingProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GradingProgress
impl Serialize for GradingProgress
impl Copy for GradingProgress
Auto Trait Implementations§
impl Freeze for GradingProgress
impl RefUnwindSafe for GradingProgress
impl Send for GradingProgress
impl Sync for GradingProgress
impl Unpin for GradingProgress
impl UnwindSafe for GradingProgress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more