Trait basic_dsp_vector::BufferBorrow [] [src]

pub trait BufferBorrow<S: ToSliceMut<T>, T: RealNumber>: DerefMut<Target = [T]> {
    fn trade(self, storage: &mut S);
}

A "slice-like" type which also allows to

Required Methods

Moves the content of this slice into storage. This operation might just copy all contents into storage or

Implementors