pub struct JudgeContext {
pub goal: String,
pub criteria: Vec<Criterion>,
pub attempt: u32,
pub result: String,
}Fields§
§goal: String§criteria: Vec<Criterion>§attempt: u32§result: StringTrait Implementations§
Source§impl Clone for JudgeContext
impl Clone for JudgeContext
Source§fn clone(&self) -> JudgeContext
fn clone(&self) -> JudgeContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for JudgeContext
impl RefUnwindSafe for JudgeContext
impl Send for JudgeContext
impl Sync for JudgeContext
impl Unpin for JudgeContext
impl UnsafeUnpin for JudgeContext
impl UnwindSafe for JudgeContext
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