Struct basic_dsp_vector::FixedLenBuffer [] [src]

pub struct FixedLenBuffer<S, T> where
    S: ToSliceMut<T>,
    T: RealNumber
{ /* fields omitted */ }

A buffer which gets initalized with a data storage type and then always keeps that.

Methods

impl<S, T> FixedLenBuffer<S, T> where
    S: ToSliceMut<T>,
    T: RealNumber
[src]

Creates a new buffer from a storage type. The buffer will internally hold its storage for it's complete life time.

Trait Implementations

impl<'a, S, T> Buffer<'a, S, T> for FixedLenBuffer<S, T> where
    S: ToSliceMut<T>,
    T: RealNumber + 'a, 
[src]

The type of the burrow which is returned.

Asks the buffer for new storage of exactly size len. The returned array doesn't need to have be initialized with any default value. Read more

Returns the allocated length of all storage within this buffer.