Trait basic_dsp_vector::ToSliceMut [] [src]

pub trait ToSliceMut<T>: ToSlice<T> {
    fn to_slice_mut(&mut self) -> &mut [T];
}

A trait to convert a type into a mutable slice.

Required Methods

Convert to a mutable slice.

Implementors