pub struct PipelineErrorContext<T: Debug + Clone + Send + Sync> {
pub context: ErrorContext<T>,
pub stage: PipelineStage,
}Expand description
Extended error context that includes pipeline stage information.
This struct combines ErrorContext with PipelineStage to provide
comprehensive information about where an error occurred in the pipeline.
Fields§
§context: ErrorContext<T>The base error context.
stage: PipelineStageThe pipeline stage where the error occurred.
Trait Implementations§
Source§impl<T: Clone + Debug + Clone + Send + Sync> Clone for PipelineErrorContext<T>
impl<T: Clone + Debug + Clone + Send + Sync> Clone for PipelineErrorContext<T>
Source§fn clone(&self) -> PipelineErrorContext<T>
fn clone(&self) -> PipelineErrorContext<T>
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 moreimpl<T: Debug + Clone + Send + Sync> StructuralPartialEq for PipelineErrorContext<T>
Auto Trait Implementations§
impl<T> Freeze for PipelineErrorContext<T>where
T: Freeze,
impl<T> RefUnwindSafe for PipelineErrorContext<T>where
T: RefUnwindSafe,
impl<T> Send for PipelineErrorContext<T>
impl<T> Sync for PipelineErrorContext<T>
impl<T> Unpin for PipelineErrorContext<T>where
T: Unpin,
impl<T> UnwindSafe for PipelineErrorContext<T>where
T: 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