pub enum AiEvalDatasetKind {
GoldenSet,
RedTeamSet,
RegressionSet,
ConversationSet,
RetrievalSet,
Synthetic,
ProductionSample,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AiEvalDatasetKind
impl Clone for AiEvalDatasetKind
Source§fn clone(&self) -> AiEvalDatasetKind
fn clone(&self) -> AiEvalDatasetKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AiEvalDatasetKind
impl Debug for AiEvalDatasetKind
Source§impl Display for AiEvalDatasetKind
impl Display for AiEvalDatasetKind
Source§impl FromStr for AiEvalDatasetKind
impl FromStr for AiEvalDatasetKind
Source§type Err = AiEvalError
type Err = AiEvalError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<AiEvalDatasetKind, <AiEvalDatasetKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AiEvalDatasetKind, <AiEvalDatasetKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AiEvalDatasetKind
impl Hash for AiEvalDatasetKind
Source§impl Ord for AiEvalDatasetKind
impl Ord for AiEvalDatasetKind
Source§fn cmp(&self, other: &AiEvalDatasetKind) -> Ordering
fn cmp(&self, other: &AiEvalDatasetKind) -> Ordering
1.21.0 (const: unstable) · 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 AiEvalDatasetKind
impl PartialEq for AiEvalDatasetKind
Source§fn eq(&self, other: &AiEvalDatasetKind) -> bool
fn eq(&self, other: &AiEvalDatasetKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AiEvalDatasetKind
impl PartialOrd for AiEvalDatasetKind
impl Copy for AiEvalDatasetKind
impl Eq for AiEvalDatasetKind
impl StructuralPartialEq for AiEvalDatasetKind
Auto Trait Implementations§
impl Freeze for AiEvalDatasetKind
impl RefUnwindSafe for AiEvalDatasetKind
impl Send for AiEvalDatasetKind
impl Sync for AiEvalDatasetKind
impl Unpin for AiEvalDatasetKind
impl UnsafeUnpin for AiEvalDatasetKind
impl UnwindSafe for AiEvalDatasetKind
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