[][src]Trait basic_dsp_vector::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

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

Convert to a mutable slice.

Loading content...

Implementations on Foreign Types

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

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

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

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

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

Loading content...

Implementors

Loading content...