Type Alias wrapperfunc
pub type wrapperfunc = Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject, _: *mut c_void) -> *mut PyObject>;
Available on crate features
dep_pyo3
and std
only.Aliased Type§
enum wrapperfunc {
None,
Some(unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject, _: *mut c_void) -> *mut PyObject),
}