pub struct BuiltinMiddlewareBefore;Trait Implementations§
Source§impl Step for BuiltinMiddlewareBefore
impl Step for BuiltinMiddlewareBefore
Source§fn description(&self) -> &str
fn description(&self) -> &str
AI-readable purpose description.
Source§fn removable(&self) -> bool
fn removable(&self) -> bool
Whether this step can be removed from the pipeline.
Safety-critical steps return
false.Source§fn replaceable(&self) -> bool
fn replaceable(&self) -> bool
Whether this step’s implementation can be swapped.
Source§fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
_ctx: &'life1 mut PipelineContext,
) -> Pin<Box<dyn Future<Output = Result<StepResult, ModuleError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
_ctx: &'life1 mut PipelineContext,
) -> Pin<Box<dyn Future<Output = Result<StepResult, ModuleError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Execute the step, reading/writing shared
PipelineContext state.Auto Trait Implementations§
impl Freeze for BuiltinMiddlewareBefore
impl RefUnwindSafe for BuiltinMiddlewareBefore
impl Send for BuiltinMiddlewareBefore
impl Sync for BuiltinMiddlewareBefore
impl Unpin for BuiltinMiddlewareBefore
impl UnsafeUnpin for BuiltinMiddlewareBefore
impl UnwindSafe for BuiltinMiddlewareBefore
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