pub enum PipeStage {
Path(Selector),
Builtin(Builtin),
Select(FilterExpr),
Set {
path: Selector,
value: LiteralValue,
},
Del(Selector),
}Expand description
A single stage in a pipeline.
Variants§
Trait Implementations§
impl StructuralPartialEq for PipeStage
Auto Trait Implementations§
impl Freeze for PipeStage
impl RefUnwindSafe for PipeStage
impl Send for PipeStage
impl Sync for PipeStage
impl Unpin for PipeStage
impl UnsafeUnpin for PipeStage
impl UnwindSafe for PipeStage
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