pub struct EvalRunOutputItemList {
pub data: Vec<EvalRunOutputItem>,
pub first_id: String,
pub last_id: String,
pub has_more: bool,
}
Expand description
An object representing a list of output items for an evaluation run.
Fields§
§data: Vec<EvalRunOutputItem>
An array of eval run output item objects.
first_id: String
The identifier of the first eval run output item in the data array.
last_id: String
The identifier of the last eval run output item in the data array.
has_more: bool
Indicates whether there are more eval run output items available.
Implementations§
Source§impl EvalRunOutputItemList
impl EvalRunOutputItemList
Sourcepub fn builder() -> EvalRunOutputItemListBuilder<((), (), (), ())>
pub fn builder() -> EvalRunOutputItemListBuilder<((), (), (), ())>
Create a builder for building EvalRunOutputItemList
.
On the builder, call .data(...)
, .first_id(...)
, .last_id(...)
, .has_more(...)
to set the values of the fields.
Finally, call .build()
to create the instance of EvalRunOutputItemList
.
Trait Implementations§
Source§impl Clone for EvalRunOutputItemList
impl Clone for EvalRunOutputItemList
Source§fn clone(&self) -> EvalRunOutputItemList
fn clone(&self) -> EvalRunOutputItemList
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 EvalRunOutputItemList
impl Debug for EvalRunOutputItemList
Source§impl<'de> Deserialize<'de> for EvalRunOutputItemList
impl<'de> Deserialize<'de> for EvalRunOutputItemList
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 EvalRunOutputItemList
impl PartialEq for EvalRunOutputItemList
Source§impl Serialize for EvalRunOutputItemList
impl Serialize for EvalRunOutputItemList
impl StructuralPartialEq for EvalRunOutputItemList
Auto Trait Implementations§
impl Freeze for EvalRunOutputItemList
impl RefUnwindSafe for EvalRunOutputItemList
impl Send for EvalRunOutputItemList
impl Sync for EvalRunOutputItemList
impl Unpin for EvalRunOutputItemList
impl UnwindSafe for EvalRunOutputItemList
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