pub struct Stack<A, B> { /* private fields */ }Expand description
Stack composition: both nodes receive the same input; outputs are concatenated.
Useful for building multi-band or multi-output processors. The output chunk will have a sample count equal to the sum of both outputs.
Equivalent to a | b via GraphExt.
Trait Implementations§
Auto Trait Implementations§
impl<A, B> Freeze for Stack<A, B>
impl<A, B> RefUnwindSafe for Stack<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for Stack<A, B>
impl<A, B> Sync for Stack<A, B>
impl<A, B> Unpin for Stack<A, B>
impl<A, B> UnsafeUnpin for Stack<A, B>where
A: UnsafeUnpin,
B: UnsafeUnpin,
impl<A, B> UnwindSafe for Stack<A, B>where
A: UnwindSafe,
B: UnwindSafe,
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