pub struct ExerciseConfig {
pub verification: Vec<Verification>,
}Expand description
The configuration for a specific exercise.
Fields§
§verification: Vec<Verification>The commands that should be run to verify this exercise. It overrides the verification command specified in the collection configuration, if any.
Trait Implementations§
Source§impl Debug for ExerciseConfig
impl Debug for ExerciseConfig
Source§impl<'de> Deserialize<'de> for ExerciseConfig
impl<'de> Deserialize<'de> for ExerciseConfig
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
Auto Trait Implementations§
impl Freeze for ExerciseConfig
impl RefUnwindSafe for ExerciseConfig
impl Send for ExerciseConfig
impl Sync for ExerciseConfig
impl Unpin for ExerciseConfig
impl UnwindSafe for ExerciseConfig
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