Trait basic_dsp_vector::combined_ops::PreparedOperation2Exec [] [src]

pub trait PreparedOperation2Exec<S: ToSliceMut<T>, T: RealNumber, A1, A2, D1, D2> {
    fn exec<B>(
        &self,
        buffer: &mut B,
        source1: A1,
        source2: A2
    ) -> Result<(D1, D2), (ErrorReason, D1, D2)>
    where
        B: for<'a> Buffer<'a, S, T>
; }

Executes the prepared operations to convert A1 and A2 to D1 and D2.

Required Methods

Executes the prepared operations to convert A1 and A2 to D1 and D2.

Implementors