pub struct JudgeQuery<'a> {
pub kind: JudgeKind,
pub criterion: &'a str,
pub scale: Option<(f64, f64)>,
}Expand description
A judge query: the criterion, its kind, and (for numeric) the scale.
Fields§
§kind: JudgeKind§criterion: &'a str§scale: Option<(f64, f64)>Auto Trait Implementations§
impl<'a> Freeze for JudgeQuery<'a>
impl<'a> RefUnwindSafe for JudgeQuery<'a>
impl<'a> Send for JudgeQuery<'a>
impl<'a> Sync for JudgeQuery<'a>
impl<'a> Unpin for JudgeQuery<'a>
impl<'a> UnsafeUnpin for JudgeQuery<'a>
impl<'a> UnwindSafe for JudgeQuery<'a>
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