Struct basic_dsp::FixedLenBuffer [−][src]
pub struct FixedLenBuffer<S, T> where
T: RealNumber,
S: ToSliceMut<T>, { /* fields omitted */ }Expand description
A buffer which gets initalized with a data storage type and then always keeps that.
Implementations
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
T: RealNumber + 'a,
S: ToSliceMut<T>, [src]
impl<'a, S, T> Buffer<'a, S, T> for FixedLenBuffer<S, T> where
T: RealNumber + 'a,
S: ToSliceMut<T>, [src]type Borrow = FixedLenBufferBurrow<'a, T>
type Borrow = FixedLenBufferBurrow<'a, T>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
Auto Trait Implementations
impl<S, T> RefUnwindSafe for FixedLenBuffer<S, T> where
S: RefUnwindSafe,
T: RefUnwindSafe, impl<S, T> Send for FixedLenBuffer<S, T> where
S: Send, impl<S, T> Sync for FixedLenBuffer<S, T> where
S: Sync, impl<S, T> Unpin for FixedLenBuffer<S, T> where
S: Unpin,
T: Unpin, impl<S, T> UnwindSafe for FixedLenBuffer<S, T> where
S: UnwindSafe,
T: UnwindSafe,