[][src]Trait static_dsp::node::Node

pub trait Node<Input, Output> {
    fn process(&mut self, input: Input) -> Output;
}

Required methods

fn process(&mut self, input: Input) -> Output

Loading content...

Implementors

impl<T: Sample> Node<(T, T), (T, T)> for Freeverb<T>[src]

impl<T: Sample, const N: usize> Node<T, T> for AllPass<T, N>[src]

impl<T: Sample, const N: usize> Node<T, T> for Comb<T, N>[src]

impl<T: Sample, const N: usize> Node<T, T> for DelayLine<T, N>[src]

Loading content...