pub struct EvalSuite {
pub cases: Vec<EvalCase>,
}Expand description
A lesson’s eval suite: its cases in authored order.
Construct one only through parse_eval_suite; document order is preserved
so a case’s index is stable for reporting (Slice 13 scoring).
Fields§
§cases: Vec<EvalCase>The eval cases, in the order authored.
Trait Implementations§
impl Eq for EvalSuite
impl StructuralPartialEq for EvalSuite
Auto Trait Implementations§
impl Freeze for EvalSuite
impl RefUnwindSafe for EvalSuite
impl Send for EvalSuite
impl Sync for EvalSuite
impl Unpin for EvalSuite
impl UnwindSafe for EvalSuite
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.