pub unsafe fn cast_optional_function_argument<'py>(
py: Python<'py>,
raw_arg: *mut PyObject,
) -> Option<Borrowed<'py, 'py, PyAny>>Expand description
As above, but for optional arguments which may be NULL.
§Safety
raw_argmust be a valid*mut ffi::PyObjectfor the lifetime'py, or NULL.