pub enum Stage {
InPlace(Arc<dyn InPlaceTransform>),
External(ExternalTransform),
}Expand description
A single pipeline stage.
Variants§
InPlace(Arc<dyn InPlaceTransform>)
In-process mutate-only transform.
External(ExternalTransform)
External worker boundary (child-stdio NDJSON).
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Stage
impl !UnwindSafe for Stage
impl Freeze for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnsafeUnpin for Stage
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