pub struct PipelineOutput {
pub text: String,
pub steps: Vec<(String, StepOutput)>,
pub context: PipelineContext,
}Expand description
Output from a pipeline execution.
Fields§
§text: StringThe final text output.
steps: Vec<(String, StepOutput)>Outputs from each step.
context: PipelineContextThe final context.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PipelineOutput
impl RefUnwindSafe for PipelineOutput
impl Send for PipelineOutput
impl Sync for PipelineOutput
impl Unpin for PipelineOutput
impl UnsafeUnpin for PipelineOutput
impl UnwindSafe for PipelineOutput
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