pub struct EvalStringCheckGrader {
pub input: String,
pub name: String,
pub operation: String,
pub reference: String,
pub _type: String,
}
Fields§
§input: String
The input text. This may include template strings.
name: String
The name of the grader.
operation: String
The string check operation to perform. One of eq
, ne
, like
, or ilike
.
reference: String
The reference text. This may include template strings.
_type: String
The object type, which is always string_check
.
Trait Implementations§
Source§impl Debug for EvalStringCheckGrader
impl Debug for EvalStringCheckGrader
Source§impl<'de> Deserialize<'de> for EvalStringCheckGrader
impl<'de> Deserialize<'de> for EvalStringCheckGrader
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 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