pub struct RunDetailResponse {
pub run: RunResponse,
pub steps: Vec<StepResponse>,
}Expand description
Run detail response — includes steps.
Fields§
§run: RunResponseThe run.
steps: Vec<StepResponse>Associated steps, ordered by position.
Trait Implementations§
Source§impl Debug for RunDetailResponse
impl Debug for RunDetailResponse
Auto Trait Implementations§
impl Freeze for RunDetailResponse
impl RefUnwindSafe for RunDetailResponse
impl Send for RunDetailResponse
impl Sync for RunDetailResponse
impl Unpin for RunDetailResponse
impl UnsafeUnpin for RunDetailResponse
impl UnwindSafe for RunDetailResponse
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