pub enum RubricTrue {
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 Clone for RubricTrue
impl Clone for RubricTrue
Source§fn clone(&self) -> RubricTrue
fn clone(&self) -> RubricTrue
Returns a duplicate 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 RubricTrue
impl Debug for RubricTrue
Source§impl Default for RubricTrue
impl Default for RubricTrue
Source§fn default() -> RubricTrue
fn default() -> RubricTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RubricTrue
impl<'de> Deserialize<'de> for RubricTrue
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 Hash for RubricTrue
impl Hash for RubricTrue
Source§impl Ord for RubricTrue
impl Ord for RubricTrue
Source§fn cmp(&self, other: &RubricTrue) -> Ordering
fn cmp(&self, other: &RubricTrue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RubricTrue
impl PartialEq for RubricTrue
Source§impl PartialOrd for RubricTrue
impl PartialOrd for RubricTrue
Source§impl Serialize for RubricTrue
impl Serialize for RubricTrue
impl Copy for RubricTrue
impl Eq for RubricTrue
impl StructuralPartialEq for RubricTrue
Auto Trait Implementations§
impl Freeze for RubricTrue
impl RefUnwindSafe for RubricTrue
impl Send for RubricTrue
impl Sync for RubricTrue
impl Unpin for RubricTrue
impl UnwindSafe for RubricTrue
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