pub struct GetEvalRunOutputItemsQuery {
pub after: Option<String>,
pub limit: Option<u32>,
pub status: Option<GetEvalRunOutputItemsStatus>,
pub order: Option<GetEvalRunOutputItemsOrder>,
}Available on crate feature
eval-types only.Expand description
Query parameters for getting eval run output items.
Fields§
§after: Option<String>Identifier for the last output item from the previous pagination request.
limit: Option<u32>Number of output items to retrieve.
status: Option<GetEvalRunOutputItemsStatus>Filter output items by status. Use failed to filter by failed output items or pass to filter by passed output items.
order: Option<GetEvalRunOutputItemsOrder>Sort order for output items by timestamp. Use asc for ascending order or desc for descending order. Defaults to asc.
Trait Implementations§
Source§impl Clone for GetEvalRunOutputItemsQuery
impl Clone for GetEvalRunOutputItemsQuery
Source§fn clone(&self) -> GetEvalRunOutputItemsQuery
fn clone(&self) -> GetEvalRunOutputItemsQuery
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 GetEvalRunOutputItemsQuery
impl Debug for GetEvalRunOutputItemsQuery
Source§impl Default for GetEvalRunOutputItemsQuery
impl Default for GetEvalRunOutputItemsQuery
Source§fn default() -> GetEvalRunOutputItemsQuery
fn default() -> GetEvalRunOutputItemsQuery
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetEvalRunOutputItemsQuery
Auto Trait Implementations§
impl Freeze for GetEvalRunOutputItemsQuery
impl RefUnwindSafe for GetEvalRunOutputItemsQuery
impl Send for GetEvalRunOutputItemsQuery
impl Sync for GetEvalRunOutputItemsQuery
impl Unpin for GetEvalRunOutputItemsQuery
impl UnwindSafe for GetEvalRunOutputItemsQuery
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