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

Important traits for &'a [u8]

Convert to a mutable slice.

Implementations on Foreign Types

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

Important traits for &'a [u8]

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

Important traits for &'a [u8]

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

Important traits for &'a [u8]

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

Important traits for &'a [u8]

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

Important traits for &'a [u8]

Implementors