audio_core/
linear_channel_mut.rs

1use crate::ChannelMut;
2
3/// Trait for linear mutable channels.
4pub trait LinearChannelMut: ChannelMut {
5    /// Access the linear channel mutably.
6    fn as_linear_channel_mut(&mut self) -> &mut [Self::Sample];
7}