pub struct EvalRunList {
pub data: Vec<EvalRun>,
pub first_id: String,
pub last_id: String,
pub has_more: bool,
}
Expand description
An object representing a list of runs for an evaluation.
Fields§
§data: Vec<EvalRun>
An array of eval run objects.
first_id: String
The identifier of the first eval run in the data array.
last_id: String
The identifier of the last eval run in the data array.
has_more: bool
Indicates whether there are more evals available.
Implementations§
Source§impl EvalRunList
impl EvalRunList
Trait Implementations§
Source§impl Clone for EvalRunList
impl Clone for EvalRunList
Source§fn clone(&self) -> EvalRunList
fn clone(&self) -> EvalRunList
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EvalRunList
impl Debug for EvalRunList
Source§impl<'de> Deserialize<'de> for EvalRunList
impl<'de> Deserialize<'de> for EvalRunList
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 PartialEq for EvalRunList
impl PartialEq for EvalRunList
Source§impl Serialize for EvalRunList
impl Serialize for EvalRunList
impl StructuralPartialEq for EvalRunList
Auto Trait Implementations§
impl Freeze for EvalRunList
impl RefUnwindSafe for EvalRunList
impl Send for EvalRunList
impl Sync for EvalRunList
impl Unpin for EvalRunList
impl UnwindSafe for EvalRunList
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