pub struct EvalRunList {
pub data: Vec<EvalRun>,
pub first_id: String,
pub has_more: bool,
pub last_id: String,
pub object: String,
}
Fields§
§data: Vec<EvalRun>
An array of eval run objects.
first_id: String
The identifier of the first eval run in the data array.
has_more: bool
Indicates whether there are more evals available.
last_id: String
The identifier of the last eval run in the data array.
object: String
The type of this object. It is always set to "list".
Trait Implementations§
Source§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
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