pub trait LinearChannelMut: ChannelMut {
    // Required method
    fn as_linear_channel_mut(&mut self) -> &mut [Self::Sample];
}
Expand description

Trait for linear mutable channels.

Required Methods§

source

fn as_linear_channel_mut(&mut self) -> &mut [Self::Sample]

Access the linear channel mutably.

Object Safety§

This trait is not object safe.

Implementors§