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§
Sourcefn as_linear_channel_mut(&mut self) -> &mut [Self::Sample]
fn as_linear_channel_mut(&mut self) -> &mut [Self::Sample]
Access the linear channel mutably.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".