Struct dsp::signal::OffsetAmp [] [src]

pub struct OffsetAmp<S> where S: Signal, S::Item: Frame {
    // some fields omitted
}

Provides an iterator that offsets the amplitude of every channel in each frame of the signal by some sample value and yields the resulting frames.

Trait Implementations

impl<S> Iterator for OffsetAmp<S> where S: Signal, S::Item: Frame

type Item = S::Item

fn next(&mut self) -> Option<OffsetAmp<S>::Item>

fn size_hint(&self) -> (usize, Option<usize>)

impl<S> ExactSizeIterator for OffsetAmp<S> where S: Signal + ExactSizeIterator, S::Item: Frame

fn len(&self) -> usize

Derived Implementations

impl<S> Clone for OffsetAmp<S> where S: Clone + Signal, S::Item: Frame, S::Item: Clone

fn clone(&self) -> OffsetAmp<S>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more