pyo3::impl_::extract_argument

Trait PyFunctionArgument

Source
pub trait PyFunctionArgument<'a, 'py>: Sized + 'a {
    type Holder: FunctionArgumentHolder;

    // Required method
    fn extract(
        obj: &'a Bound<'py, PyAny>,
        holder: &'a mut Self::Holder,
    ) -> PyResult<Self>;
}
Expand description

A trait which is used to help PyO3 macros extract function arguments.

#[pyclass] structs need to extract as PyRef<T> and PyRefMut<T> wrappers rather than extracting &T and &mut T directly. The Holder type is used to hold these temporary wrappers - the way the macro is constructed, these wrappers will be dropped as soon as the pyfunction call ends.

There exists a trivial blanket implementation for T: FromPyObject with Holder = ().

Required Associated Types§

Required Methods§

Source

fn extract( obj: &'a Bound<'py, PyAny>, holder: &'a mut Self::Holder, ) -> PyResult<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a, 'py, T> PyFunctionArgument<'a, 'py> for Option<&'a Bound<'py, T>>
where T: PyTypeCheck + 'py,

Source§

type Holder = ()

Source§

fn extract(obj: &'a Bound<'py, PyAny>, _: &'a mut ()) -> PyResult<Self>

Implementors§

Source§

impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a Coroutine

Available on crate feature experimental-async only.
Source§

impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut Coroutine

Available on crate feature experimental-async only.
Source§

impl<'a, 'py, T> PyFunctionArgument<'a, 'py> for &'a Bound<'py, T>
where T: PyTypeCheck + 'py,

Source§

impl<'a, 'py, T> PyFunctionArgument<'a, 'py> for T
where T: FromPyObjectBound<'a, 'py> + 'a,

⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here