pub enum Step {
Algorithm {
name: String,
seed: Option<u64>,
params: Option<Params>,
},
Effect {
name: String,
params: Option<Params>,
},
Combine {
mode: CombineMode,
source: CombineSource,
},
If {
condition: PipelineCondition,
then_steps: Vec<Step>,
else_steps: Vec<Step>,
},
StoreGrid {
key: String,
},
SetParameter {
key: String,
value: String,
},
Log {
message: String,
},
}Expand description
Unified pipeline steps (name + optional params).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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