[][src]Trait basic_dsp::ToSliceMut

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

Important traits for &'a mut [u8]

fn to_slice_mut(&mut self) -> &mut [T]

Convert to a mutable slice.

Loading content...

Implementations on Foreign Types

impl<T> ToSliceMut<T> for Vec<T> where
    T: RealNumber
[src]

impl<A> ToSliceMut<<A as Array>::Item> for ArrayVec<A> where
    A: Array,
    <A as Array>::Item: RealNumber
[src]

impl<T> ToSliceMut<T> for Box<[T]>
[src]

impl<T> ToSliceMut<T> for [T]
[src]

impl<'a, T> ToSliceMut<T> for &'a mut [T]
[src]

Loading content...

Implementors

Loading content...