pub struct RubricConfig {
pub rubrics: Vec<Rubric>,
}Expand description
Configuration for rubric-based evaluation
Fields§
§rubrics: Vec<Rubric>List of rubrics to evaluate against
Trait Implementations§
Source§impl Clone for RubricConfig
impl Clone for RubricConfig
Source§fn clone(&self) -> RubricConfig
fn clone(&self) -> RubricConfig
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 RubricConfig
impl Debug for RubricConfig
Source§impl Default for RubricConfig
impl Default for RubricConfig
Source§fn default() -> RubricConfig
fn default() -> RubricConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RubricConfig
impl<'de> Deserialize<'de> for RubricConfig
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 RubricConfig
impl RefUnwindSafe for RubricConfig
impl Send for RubricConfig
impl Sync for RubricConfig
impl Unpin for RubricConfig
impl UnwindSafe for RubricConfig
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