Trait rotary_core::BufMut[][src]

pub trait BufMut<T>: Buf<T> {
    fn channel_mut(&mut self, channel: usize) -> ChannelMut<'_, T>;
}

A trait describing a mutable audio buffer.

Required methods

fn channel_mut(&mut self, channel: usize) -> ChannelMut<'_, T>[src]

Return a mutable handler to the buffer associated with the channel.

Panics

Panics if the specified channel is out of bound as reported by Buf::channels.

Loading content...

Implementations on Foreign Types

impl<B: ?Sized, T> BufMut<T> for &mut B where
    B: BufMut<T>, 
[src]

impl<T> BufMut<T> for Vec<Vec<T>>[src]

Loading content...

Implementors

Loading content...