pub struct OnError {
pub error: String,
pub source: String,
}Expand description
Fired when an error occurs anywhere in the pipeline.
Fields§
§error: StringError message reported by the failing operation.
source: StringPipeline stage or component that reported the error.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OnError
impl RefUnwindSafe for OnError
impl Send for OnError
impl Sync for OnError
impl Unpin for OnError
impl UnsafeUnpin for OnError
impl UnwindSafe for OnError
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