pub type LV2_Lib_Descriptor_Function = Option<unsafe extern "C" fn(bundle_path: *const c_char, features: *const *const LV2_Feature) -> *const LV2_Lib_Descriptor>;Expand description
Type of the lv2_lib_descriptor() function in an LV2 library.
Aliased Type§
pub enum LV2_Lib_Descriptor_Function {
None,
Some(unsafe extern "C" fn(*const i8, *const *const LV2_Feature) -> *const LV2_Lib_Descriptor),
}Variants§
None
No value.
Some(unsafe extern "C" fn(*const i8, *const *const LV2_Feature) -> *const LV2_Lib_Descriptor)
Some value of type T.