type PyArg<'py> = Borrowed<'py, 'py, PyAny>;
Expand description
Helper type used to keep implementation more concise.
(Function argument extraction borrows input arguments.)
Aliased Type§
struct PyArg<'py>(NonNull<PyObject>, PhantomData<&'py Py<PyAny>>, Python<'py>);
Fields§
§0: NonNull<PyObject>
§1: PhantomData<&'py Py<PyAny>>
§2: Python<'py>