Trait basic_dsp_vector::BufferBorrow

source ·
pub trait BufferBorrow<S: ToSliceMut<T>, T: RealNumber>: ToSliceMut<T> {
    // Required method
    fn trade(self, storage: &mut S);
}
Expand description

A “slice-like” type which also allows to

Required Methods§

source

fn trade(self, storage: &mut S)

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

Implementors§