pub enum Rubric {
NumericScale,
DescriptiveScale,
Checklist,
Matrix,
PercentageScale,
LikertScale,
AutomaticRubric,
PassFail,
}Expand description
This enforces the rubric of the evaluation. The output is stored in call.analysis.successEvaluation. Options include: - ‘NumericScale’: A scale of 1 to 10. - ‘DescriptiveScale’: A scale of Excellent, Good, Fair, Poor. - ‘Checklist’: A checklist of criteria and their status. - ‘Matrix’: A grid that evaluates multiple criteria across different performance levels. - ‘PercentageScale’: A scale of 0% to 100%. - ‘LikertScale’: A scale of Strongly Agree, Agree, Neutral, Disagree, Strongly Disagree. - ‘AutomaticRubric’: Automatically break down evaluation into several criteria, each with its own score. - ‘PassFail’: A simple ‘true’ if call passed, ‘false’ if not. Default is ‘PassFail’.
Variants§
NumericScale
DescriptiveScale
Checklist
Matrix
PercentageScale
LikertScale
AutomaticRubric
PassFail
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rubric
impl<'de> Deserialize<'de> for Rubric
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
Source§impl Ord for Rubric
impl Ord for Rubric
Source§impl PartialOrd for Rubric
impl PartialOrd for Rubric
impl Copy for Rubric
impl Eq for Rubric
impl StructuralPartialEq for Rubric
Auto Trait Implementations§
impl Freeze for Rubric
impl RefUnwindSafe for Rubric
impl Send for Rubric
impl Sync for Rubric
impl Unpin for Rubric
impl UnwindSafe for Rubric
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