pub struct Eval {
pub created_at: i32,
pub data_source_config: Value,
pub id: String,
pub metadata: Metadata,
pub name: String,
pub object: String,
pub testing_criteria: Vec<Value>,
}
Fields§
§created_at: i32
The Unix timestamp (in seconds) for when the eval was created.
data_source_config: Value
Configuration of data sources used in runs of the evaluation.
id: String
Unique identifier for the evaluation.
metadata: Metadata
§name: String
The name of the evaluation.
object: String
The object type.
testing_criteria: Vec<Value>
A list of testing criteria.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Eval
impl<'de> Deserialize<'de> for Eval
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 Eval
impl RefUnwindSafe for Eval
impl Send for Eval
impl Sync for Eval
impl Unpin for Eval
impl UnwindSafe for Eval
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