pub type DspSetParamCallback = Option<fn(dsp_state: &DspState, index: i32, value: f32) -> Status>;
DSP callback
pub enum DspSetParamCallback { None, Some(fn(&DspState, i32, f32) -> Status), }
No value.
Some value of type T.
T