pub struct RunListResponse {
pub runs: Vec<RunSummary>,
pub limit: usize,
pub offset: usize,
}Expand description
Runs list response payload.
This struct represents the stable schema for the runs list endpoint response.
Fields§
§runs: Vec<RunSummary>Run summaries returned for the current page.
limit: usizeThe limit applied to the result set.
offset: usizeThe offset applied to the result set.
Trait Implementations§
Source§impl Clone for RunListResponse
impl Clone for RunListResponse
Source§fn clone(&self) -> RunListResponse
fn clone(&self) -> RunListResponse
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 RunListResponse
impl Debug for RunListResponse
Auto Trait Implementations§
impl Freeze for RunListResponse
impl RefUnwindSafe for RunListResponse
impl Send for RunListResponse
impl Sync for RunListResponse
impl Unpin for RunListResponse
impl UnsafeUnpin for RunListResponse
impl UnwindSafe for RunListResponse
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