pub struct CompiledPipelineStep {
pub step: PipelineStep,
pub compiled_do: Option<Expr>,
pub compiled_when: Option<Expr>,
pub compiled_args: Vec<Expr>,
}Expand description
A pipeline step with pre-compiled expressions for fast evaluation.
Fields§
§step: PipelineStep§compiled_do: Option<Expr>§compiled_when: Option<Expr>§compiled_args: Vec<Expr>Trait Implementations§
Source§impl Clone for CompiledPipelineStep
impl Clone for CompiledPipelineStep
Source§fn clone(&self) -> CompiledPipelineStep
fn clone(&self) -> CompiledPipelineStep
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompiledPipelineStep
impl RefUnwindSafe for CompiledPipelineStep
impl !Send for CompiledPipelineStep
impl !Sync for CompiledPipelineStep
impl Unpin for CompiledPipelineStep
impl UnsafeUnpin for CompiledPipelineStep
impl UnwindSafe for CompiledPipelineStep
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