pub struct NonInterleaved<S> { /* private fields */ }Expand description
A wrapper around the pointer to the mBuffers array.
Implementations§
Source§impl<S> NonInterleaved<S>
impl<S> NonInterleaved<S>
Sourcepub fn channels(&self) -> Channels<'_, S> ⓘ
pub fn channels(&self) -> Channels<'_, S> ⓘ
An iterator yielding a reference to each channel in the array.
Sourcepub fn channels_mut(&mut self) -> ChannelsMut<'_, S> ⓘ
pub fn channels_mut(&mut self) -> ChannelsMut<'_, S> ⓘ
An iterator yielding a mutable reference to each channel in the array.
Trait Implementations§
Source§impl<S> Data for NonInterleaved<S>where
S: Sample,
impl<S> Data for NonInterleaved<S>where
S: Sample,
Source§fn does_stream_format_match(stream_format: &StreamFormat) -> bool
fn does_stream_format_match(stream_format: &StreamFormat) -> bool
Check whether the stream format matches this type of data.
Source§unsafe fn from_input_proc_args(
frames: u32,
io_data: *mut AudioBufferList,
) -> Self
unsafe fn from_input_proc_args( frames: u32, io_data: *mut AudioBufferList, ) -> Self
We must be able to construct Self from arguments given to the
input_proc. Read moreimpl<S> Send for NonInterleaved<S>where
S: Send,
Auto Trait Implementations§
impl<S> Freeze for NonInterleaved<S>
impl<S> RefUnwindSafe for NonInterleaved<S>where
S: RefUnwindSafe,
impl<S> !Sync for NonInterleaved<S>
impl<S> Unpin for NonInterleaved<S>where
S: Unpin,
impl<S> !UnwindSafe for NonInterleaved<S>
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