pub type PyArray_GetItemFunc = Option<unsafe extern "C" fn(_: *mut c_void, _: *mut c_void) -> *mut PyObject>;

Aliased Type§

enum PyArray_GetItemFunc {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *mut c_void) -> *mut PyObject),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *mut c_void) -> *mut PyObject)

Some value of type T.