DspGetParamCallback

Type Alias DspGetParamCallback 

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

DSP callback

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.