pub enum PipeStep {
Forward(Expr),
Bind(BindTarget),
}Variants§
Forward(Expr)
| expr — forward current value as new context
Bind(BindTarget)
-> target — label current value, pass through unchanged
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PipeStep
impl RefUnwindSafe for PipeStep
impl Send for PipeStep
impl Sync for PipeStep
impl Unpin for PipeStep
impl UnsafeUnpin for PipeStep
impl UnwindSafe for PipeStep
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