pub struct PipelineResponse<Ctx> {
pub ctx: Ctx,
pub executed: Vec<String>,
pub err: Option<PipelineError>,
}
Expand description
Pipeline response
Fields§
§ctx: Ctx
§executed: Vec<String>
§err: Option<PipelineError>
Implementations§
Source§impl<Ctx> PipelineResponse<Ctx>
impl<Ctx> PipelineResponse<Ctx>
Auto Trait Implementations§
impl<Ctx> Freeze for PipelineResponse<Ctx>where
Ctx: Freeze,
impl<Ctx> RefUnwindSafe for PipelineResponse<Ctx>where
Ctx: RefUnwindSafe,
impl<Ctx> Send for PipelineResponse<Ctx>where
Ctx: Send,
impl<Ctx> Sync for PipelineResponse<Ctx>where
Ctx: Sync,
impl<Ctx> Unpin for PipelineResponse<Ctx>where
Ctx: Unpin,
impl<Ctx> UnwindSafe for PipelineResponse<Ctx>where
Ctx: UnwindSafe,
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