Struct dsp::signal::ScaleAmp
[−]
[src]
pub struct ScaleAmp<S> where S: Signal, S::Item: Frame {
// some fields omitted
}
An Iterator
that scales the amplitude of the sample of each channel in every Frame
yielded
by self
by the given amplitude.
Trait Implementations
impl<S> Iterator for ScaleAmp<S> where S: Signal, S::Item: Frame
type Item = S::Item
fn next(&mut self) -> Option<ScaleAmp<S>::Item>
fn size_hint(&self) -> (usize, Option<usize>)
impl<S> ExactSizeIterator for ScaleAmp<S> where S: Signal + ExactSizeIterator, S::Item: Frame
Derived Implementations
impl<S> Clone for ScaleAmp<S> where S: Clone + Signal, S::Item: Frame, S::Item: Clone
fn clone(&self) -> ScaleAmp<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