pub enum AplusExerciseStatus {
Ready,
Unlisted,
Hidden,
Enrollment,
EnrollmentExt,
Maintenance,
}Expand description
There are 6 possible statuses for A+ exercises:
- ready: Visible exercise listed in table of contents.
- unlisted (default): Unlisted in table of contents, otherwise same as ready.
- hidden: Hidden from non course staff.
- enrollment: Questions for students when they enroll to a course.
- enrollment_ext: Same as enrollment but for external students.
- maintenance: Hides the exercise description and prevents submissions.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AplusExerciseStatus
impl RefUnwindSafe for AplusExerciseStatus
impl Send for AplusExerciseStatus
impl Sync for AplusExerciseStatus
impl Unpin for AplusExerciseStatus
impl UnwindSafe for AplusExerciseStatus
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