DspSetParamCallback

Type Alias DspSetParamCallback 

Source
pub type DspSetParamCallback = Option<fn(dsp_state: &DspState, index: i32, value: f32) -> Status>;
Expand description

DSP callback

Aliased Type§

pub enum DspSetParamCallback {
    None,
    Some(fn(&DspState, i32, f32) -> Status),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(fn(&DspState, i32, f32) -> Status)

Some value of type T.