pub struct TapeWriter<T> { /* private fields */ }Expand description
Unique write capability over a shared TapeLoop.
Not Clone — at most one TapeWriter exists per tape (enforced by the
resource registry). Held by the single write head.
Implementations§
Source§impl<T: Transcendental> TapeWriter<T>
impl<T: Transcendental> TapeWriter<T>
Sourcepub fn write_block(&mut self, block: &[T])
pub fn write_block(&mut self, block: &[T])
Write a full block of samples.
Auto Trait Implementations§
impl<T> !RefUnwindSafe for TapeWriter<T>
impl<T> !Send for TapeWriter<T>
impl<T> !Sync for TapeWriter<T>
impl<T> !UnwindSafe for TapeWriter<T>
impl<T> Freeze for TapeWriter<T>
impl<T> Unpin for TapeWriter<T>
impl<T> UnsafeUnpin for TapeWriter<T>
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