pub struct EvalStringCheckGrader {
pub type: String,
pub name: String,
pub input: String,
pub reference: String,
pub operation: String,
}
Expand description
A StringCheckGrader object that performs a string comparison between input and reference using a specified operation.
Fields§
§type: String
The object type, which is always string_check
.
name: String
The name of the grader.
input: String
The input text.
reference: String
The reference text.
operation: String
The string check operation to perform.
Trait Implementations§
Source§impl Clone for EvalStringCheckGrader
impl Clone for EvalStringCheckGrader
Source§fn clone(&self) -> EvalStringCheckGrader
fn clone(&self) -> EvalStringCheckGrader
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EvalStringCheckGrader
impl Debug for EvalStringCheckGrader
Source§impl Default for EvalStringCheckGrader
impl Default for EvalStringCheckGrader
Source§fn default() -> EvalStringCheckGrader
fn default() -> EvalStringCheckGrader
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvalStringCheckGrader
impl RefUnwindSafe for EvalStringCheckGrader
impl Send for EvalStringCheckGrader
impl Sync for EvalStringCheckGrader
impl Unpin for EvalStringCheckGrader
impl UnwindSafe for EvalStringCheckGrader
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