pub enum Step {
Block(usize),
ForeignBlock(usize),
Sample(Vec<usize>),
}Expand description
One scheduled unit of work, in execution order.
Variants§
Block(usize)
A single combinational instruction, executed over the whole buffer.
ForeignBlock(usize)
An opaque whole-buffer built-in (1→1).
Sample(Vec<usize>)
A recurrent region, executed per sample. Instruction indices are in original IR order (which preserves intra-sample data + read-before-write ordering established by lowering).
Trait Implementations§
impl Eq for Step
impl StructuralPartialEq for Step
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin 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