pub struct MultiBuffer<T: Float> { /* private fields */ }Expand description
Multi-channel delay buffer
This behaves similarly to the single-channel Buffer, with the following differences:
buffer.channel(c)returns a view for a single channel- The constructor and
.resize()take an additional firstchannelsargument.
Implementations§
Auto Trait Implementations§
impl<T> Freeze for MultiBuffer<T>
impl<T> RefUnwindSafe for MultiBuffer<T>where
T: RefUnwindSafe,
impl<T> Send for MultiBuffer<T>where
T: Send,
impl<T> Sync for MultiBuffer<T>where
T: Sync,
impl<T> Unpin for MultiBuffer<T>where
T: Unpin,
impl<T> UnwindSafe for MultiBuffer<T>where
T: 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