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