pub struct GetEvalRunOutputItemParams {
pub eval_id: String,
pub run_id: String,
pub output_item_id: String,
}
Fields§
§eval_id: String
The ID of the evaluation to retrieve runs for.
run_id: String
The ID of the run to retrieve.
output_item_id: String
The ID of the output item to retrieve.
Implementations§
Source§impl GetEvalRunOutputItemParams
impl GetEvalRunOutputItemParams
Sourcepub fn builder() -> GetEvalRunOutputItemParamsBuilder<((), (), ())>
pub fn builder() -> GetEvalRunOutputItemParamsBuilder<((), (), ())>
Create a builder for building GetEvalRunOutputItemParams
.
On the builder, call .eval_id(...)
, .run_id(...)
, .output_item_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of GetEvalRunOutputItemParams
.
Trait Implementations§
Source§impl Clone for GetEvalRunOutputItemParams
impl Clone for GetEvalRunOutputItemParams
Source§fn clone(&self) -> GetEvalRunOutputItemParams
fn clone(&self) -> GetEvalRunOutputItemParams
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 GetEvalRunOutputItemParams
impl Debug for GetEvalRunOutputItemParams
Source§impl<'de> Deserialize<'de> for GetEvalRunOutputItemParams
impl<'de> Deserialize<'de> for GetEvalRunOutputItemParams
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 GetEvalRunOutputItemParams
impl PartialEq for GetEvalRunOutputItemParams
Source§fn eq(&self, other: &GetEvalRunOutputItemParams) -> bool
fn eq(&self, other: &GetEvalRunOutputItemParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetEvalRunOutputItemParams
Auto Trait Implementations§
impl Freeze for GetEvalRunOutputItemParams
impl RefUnwindSafe for GetEvalRunOutputItemParams
impl Send for GetEvalRunOutputItemParams
impl Sync for GetEvalRunOutputItemParams
impl Unpin for GetEvalRunOutputItemParams
impl UnwindSafe for GetEvalRunOutputItemParams
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