pub enum GradingProgress {
NotReady,
Failed,
Pending,
PendingManual,
FullyGraded,
}Variants§
Trait Implementations§
Source§impl Clone for GradingProgress
impl Clone for GradingProgress
Source§fn clone(&self) -> GradingProgress
fn clone(&self) -> GradingProgress
Returns a duplicate 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 PartialEq for GradingProgress
impl PartialEq for GradingProgress
Source§impl Serialize for GradingProgress
impl Serialize for GradingProgress
impl StructuralPartialEq 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