pub enum Op {
Zero {
output: BufferId,
},
Sum {
inputs: Vec<BufferId>,
output: BufferId,
},
Task {
task: ProcessTask,
ins: Vec<BufferId>,
outs: Vec<BufferId>,
},
HwInput {
channel: usize,
output: BufferId,
},
}Expand description
What a plan node does when executed.
Variants§
Zero
Fill output with silence for an unconnected consumer port.
Sum
Sum all inputs into output for a connected consumer port.
Task
Engine task: track / folder section / plugin processing. Keeps the
transitional TrackHandle until Phase 5’s TrackRt split lands;
ins/outs are the arena buffers this task reads (post-Sum) and
produces.
HwInput
Hardware input bridge: the driver thread writes output directly each
block (JACK copy_audio_inputs, fill_ports_from_interleaved_buffer).
A pure source — no plan node produces it.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Op
impl !UnwindSafe for Op
impl Freeze for Op
impl Send for Op
impl Sync for Op
impl Unpin for Op
impl UnsafeUnpin for Op
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more