pub struct AudioBuffers<'a> { /* private fields */ }
Expand description
Contains the flushed output buffer of the APU
.
The main buffer all
is the summation of all of the other buffers/channels.
If you want a combination of different channels, you can just add them together.
All volume control is done before pushing to the buffers.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AudioBuffers<'a>
impl<'a> RefUnwindSafe for AudioBuffers<'a>
impl<'a> Send for AudioBuffers<'a>
impl<'a> Sync for AudioBuffers<'a>
impl<'a> Unpin for AudioBuffers<'a>
impl<'a> !UnwindSafe for AudioBuffers<'a>
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