pub trait FromPyObject<'py>: Sized {
    // Provided methods
    fn extract(ob: &'py PyAny) -> PyResult<Self> { ... }
    fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self> { ... }
    fn type_input() -> TypeInfo { ... }
}
Expand description

Extract a type from a Python object.

Normal usage is through the extract methods on Bound and Py, which forward to this trait.

§Examples

use pyo3::prelude::*;
use pyo3::types::PyString;

Python::with_gil(|py| {
    // Calling `.extract()` on a `Bound` smart pointer
    let obj: Bound<'_, PyString> = PyString::new_bound(py, "blah");
    let s: String = obj.extract()?;

    // Calling `.extract(py)` on a `Py` smart pointer
    let obj: Py<PyString> = obj.unbind();
    let s: String = obj.extract(py)?;
})

During the migration of PyO3 from the “GIL Refs” API to the Bound<T> smart pointer, this trait has two methods extract and extract_bound which are defaulted to call each other. To avoid infinite recursion, implementors must implement at least one of these methods. The recommendation is to implement extract_bound and leave extract as the default implementation.

Provided Methods§

source

fn extract(ob: &'py PyAny) -> PyResult<Self>

Extracts Self from the source GIL Ref obj.

Implementors are encouraged to implement extract_bound and leave this method as the default implementation, which will forward calls to extract_bound.

source

fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self>

Extracts Self from the bound smart pointer obj.

Implementors are encouraged to implement this method and leave extract defaulted, as this will be most compatible with PyO3’s future API.

source

fn type_input() -> TypeInfo

Extracts the type hint information for this type when it appears as an argument.

For example, Vec<u32> would return Sequence[int]. The default implementation returns Any, which is correct for any type.

For most types, the return value for this method will be identical to that of IntoPy::type_output. It may be different for some types, such as Dict, to allow duck-typing: functions return Dict but take Mapping as argument.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FromPyObject<'_> for IpAddr

source§

fn extract_bound(obj: &Bound<'_, PyAny>) -> PyResult<Self>

source§

impl FromPyObject<'_> for bool

Converts a Python bool to a Rust bool.

Fails with TypeError if the input is not a Python bool.

source§

impl FromPyObject<'_> for char

source§

impl FromPyObject<'_> for i128

source§

impl FromPyObject<'_> for u64

source§

impl FromPyObject<'_> for u128

source§

impl FromPyObject<'_> for usize

source§

impl FromPyObject<'_> for String

Allows extracting strings from Python objects. Accepts Python str and unicode objects.

source§

impl FromPyObject<'_> for Duration

source§

fn extract_bound(obj: &Bound<'_, PyAny>) -> PyResult<Self>

source§

impl FromPyObject<'_> for OsString

source§

fn extract_bound(ob: &Bound<'_, PyAny>) -> PyResult<Self>

source§

impl FromPyObject<'_> for PathBuf

source§

fn extract_bound(ob: &Bound<'_, PyAny>) -> PyResult<Self>

source§

impl FromPyObject<'_> for SystemTime

source§

fn extract_bound(obj: &Bound<'_, PyAny>) -> PyResult<Self>

source§

impl FromPyObject<'_> for NaiveDate

source§

impl FromPyObject<'_> for NaiveDateTime

source§

impl FromPyObject<'_> for NaiveTime

source§

impl FromPyObject<'_> for FixedOffset

source§

fn extract_bound(ob: &Bound<'_, PyAny>) -> PyResult<FixedOffset>

Convert python tzinfo to rust FixedOffset.

Note that the conversion will result in precision lost in microseconds as chrono offset does not supports microseconds.

source§

impl FromPyObject<'_> for Utc

source§

impl FromPyObject<'_> for Complex<f32>

source§

impl FromPyObject<'_> for Complex<f64>

source§

impl FromPyObject<'_> for NonZeroI8

source§

impl FromPyObject<'_> for NonZeroI16

source§

impl FromPyObject<'_> for NonZeroI32

source§

impl FromPyObject<'_> for NonZeroI64

source§

impl FromPyObject<'_> for NonZeroI128

source§

impl FromPyObject<'_> for NonZeroIsize

source§

impl FromPyObject<'_> for NonZeroU8

source§

impl FromPyObject<'_> for NonZeroU16

source§

impl FromPyObject<'_> for NonZeroU32

source§

impl FromPyObject<'_> for NonZeroU64

source§

impl FromPyObject<'_> for NonZeroU128

source§

impl FromPyObject<'_> for NonZeroUsize

source§

impl FromPyObject<'_> for Duration

source§

impl FromPyObject<'_> for Decimal

source§

fn extract_bound(obj: &Bound<'_, PyAny>) -> PyResult<Self>

source§

impl<'py> FromPyObject<'py> for f32

source§

impl<'py> FromPyObject<'py> for f64

source§

impl<'py> FromPyObject<'py> for i8

source§

impl<'py> FromPyObject<'py> for i16

source§

impl<'py> FromPyObject<'py> for i32

source§

impl<'py> FromPyObject<'py> for i64

source§

impl<'py> FromPyObject<'py> for isize

source§

impl<'py> FromPyObject<'py> for u8

source§

impl<'py> FromPyObject<'py> for u16

source§

impl<'py> FromPyObject<'py> for u32

source§

impl<'py> FromPyObject<'py> for BigInt

source§

impl<'py> FromPyObject<'py> for BigUint

source§

impl<'py, A> FromPyObject<'py> for SmallVec<A>
where A: Array, A::Item: FromPyObject<'py>,

source§

impl<'py, K> FromPyObject<'py> for BTreeSet<K>
where K: FromPyObject<'py> + Ord,

source§

impl<'py, K, S> FromPyObject<'py> for HashSet<K, S>
where K: FromPyObject<'py> + Eq + Hash, S: BuildHasher + Default,

source§

impl<'py, K, S> FromPyObject<'py> for HashSet<K, S>
where K: FromPyObject<'py> + Eq + Hash, S: BuildHasher + Default,

source§

fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self>

source§

impl<'py, K, V> FromPyObject<'py> for BTreeMap<K, V>
where K: FromPyObject<'py> + Ord, V: FromPyObject<'py>,

source§

impl<'py, K, V, S> FromPyObject<'py> for HashMap<K, V, S>
where K: FromPyObject<'py> + Eq + Hash, V: FromPyObject<'py>, S: BuildHasher + Default,

source§

impl<'py, K, V, S> FromPyObject<'py> for HashMap<K, V, S>
where K: FromPyObject<'py> + Eq + Hash, V: FromPyObject<'py>, S: BuildHasher + Default,

source§

fn extract_bound(ob: &Bound<'py, PyAny>) -> Result<Self, PyErr>

source§

impl<'py, K, V, S> FromPyObject<'py> for IndexMap<K, V, S>
where K: FromPyObject<'py> + Eq + Hash, V: FromPyObject<'py>, S: BuildHasher + Default,

source§

fn extract_bound(ob: &Bound<'py, PyAny>) -> Result<Self, PyErr>

source§

impl<'py, L, R> FromPyObject<'py> for Either<L, R>
where L: FromPyObject<'py>, R: FromPyObject<'py>,

source§

impl<'py, T0: FromPyObject<'py>> FromPyObject<'py> for (T0,)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>> FromPyObject<'py> for (T0, T1)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>, T6: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5, T6)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>, T6: FromPyObject<'py>, T7: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5, T6, T7)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>, T6: FromPyObject<'py>, T7: FromPyObject<'py>, T8: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>, T6: FromPyObject<'py>, T7: FromPyObject<'py>, T8: FromPyObject<'py>, T9: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>, T6: FromPyObject<'py>, T7: FromPyObject<'py>, T8: FromPyObject<'py>, T9: FromPyObject<'py>, T10: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

source§

impl<'py, T0: FromPyObject<'py>, T1: FromPyObject<'py>, T2: FromPyObject<'py>, T3: FromPyObject<'py>, T4: FromPyObject<'py>, T5: FromPyObject<'py>, T6: FromPyObject<'py>, T7: FromPyObject<'py>, T8: FromPyObject<'py>, T9: FromPyObject<'py>, T10: FromPyObject<'py>, T11: FromPyObject<'py>> FromPyObject<'py> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

source§

impl<'py, T> FromPyObject<'py> for Option<T>
where T: FromPyObject<'py>,

source§

fn extract_bound(obj: &Bound<'py, PyAny>) -> PyResult<Self>

source§

impl<'py, T> FromPyObject<'py> for Vec<T>
where T: FromPyObject<'py>,

source§

impl<'py, T, const N: usize> FromPyObject<'py> for [T; N]
where T: FromPyObject<'py>,

source§

fn extract_bound(obj: &Bound<'py, PyAny>) -> PyResult<Self>

source§

impl<'py, T: FromPyObject<'py>> FromPyObject<'py> for Cell<T>

source§

fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self>

source§

impl<Tz: TimeZone + for<'py> FromPyObject<'py>> FromPyObject<'_> for DateTime<Tz>

Implementors§

source§

impl FromPyObject<'_> for PyBackedBytes

source§

impl FromPyObject<'_> for PyBackedStr

source§

impl<'py> FromPyObject<'py> for &'py CancelledError

source§

impl<'py> FromPyObject<'py> for &'py IncompleteReadError

source§

impl<'py> FromPyObject<'py> for &'py InvalidStateError

source§

impl<'py> FromPyObject<'py> for &'py LimitOverrunError

source§

impl<'py> FromPyObject<'py> for &'py QueueEmpty

source§

impl<'py> FromPyObject<'py> for &'py QueueFull

source§

impl<'py> FromPyObject<'py> for &'py TimeoutError

source§

impl<'py> FromPyObject<'py> for &'py gaierror

source§

impl<'py> FromPyObject<'py> for &'py herror

source§

impl<'py> FromPyObject<'py> for &'py timeout

source§

impl<'py> FromPyObject<'py> for &'py PyArithmeticError

source§

impl<'py> FromPyObject<'py> for &'py PyAssertionError

source§

impl<'py> FromPyObject<'py> for &'py PyAttributeError

source§

impl<'py> FromPyObject<'py> for &'py PyBaseException

source§

impl<'py> FromPyObject<'py> for &'py PyBlockingIOError

source§

impl<'py> FromPyObject<'py> for &'py PyBrokenPipeError

source§

impl<'py> FromPyObject<'py> for &'py PyBufferError

source§

impl<'py> FromPyObject<'py> for &'py PyBytesWarning

source§

impl<'py> FromPyObject<'py> for &'py PyChildProcessError

source§

impl<'py> FromPyObject<'py> for &'py PyConnectionAbortedError

source§

impl<'py> FromPyObject<'py> for &'py PyConnectionError

source§

impl<'py> FromPyObject<'py> for &'py PyConnectionRefusedError

source§

impl<'py> FromPyObject<'py> for &'py PyConnectionResetError

source§

impl<'py> FromPyObject<'py> for &'py PyDeprecationWarning

source§

impl<'py> FromPyObject<'py> for &'py PyEOFError

source§

impl<'py> FromPyObject<'py> for &'py PyEnvironmentError

source§

impl<'py> FromPyObject<'py> for &'py PyException

source§

impl<'py> FromPyObject<'py> for &'py PyFileExistsError

source§

impl<'py> FromPyObject<'py> for &'py PyFileNotFoundError

source§

impl<'py> FromPyObject<'py> for &'py PyFloatingPointError

source§

impl<'py> FromPyObject<'py> for &'py PyFutureWarning

source§

impl<'py> FromPyObject<'py> for &'py PyGeneratorExit

source§

impl<'py> FromPyObject<'py> for &'py PyIOError

source§

impl<'py> FromPyObject<'py> for &'py PyImportError

source§

impl<'py> FromPyObject<'py> for &'py PyImportWarning

source§

impl<'py> FromPyObject<'py> for &'py PyIndexError

source§

impl<'py> FromPyObject<'py> for &'py PyInterruptedError

source§

impl<'py> FromPyObject<'py> for &'py PyIsADirectoryError

source§

impl<'py> FromPyObject<'py> for &'py PyKeyError

source§

impl<'py> FromPyObject<'py> for &'py PyKeyboardInterrupt

source§

impl<'py> FromPyObject<'py> for &'py PyLookupError

source§

impl<'py> FromPyObject<'py> for &'py PyMemoryError

source§

impl<'py> FromPyObject<'py> for &'py PyModuleNotFoundError

source§

impl<'py> FromPyObject<'py> for &'py PyNameError

source§

impl<'py> FromPyObject<'py> for &'py PyNotADirectoryError

source§

impl<'py> FromPyObject<'py> for &'py PyNotImplementedError

source§

impl<'py> FromPyObject<'py> for &'py PyOSError

source§

impl<'py> FromPyObject<'py> for &'py PyOverflowError

source§

impl<'py> FromPyObject<'py> for &'py PyPendingDeprecationWarning

source§

impl<'py> FromPyObject<'py> for &'py PyPermissionError

source§

impl<'py> FromPyObject<'py> for &'py PyProcessLookupError

source§

impl<'py> FromPyObject<'py> for &'py PyRecursionError

source§

impl<'py> FromPyObject<'py> for &'py PyReferenceError

source§

impl<'py> FromPyObject<'py> for &'py PyResourceWarning

source§

impl<'py> FromPyObject<'py> for &'py PyRuntimeError

source§

impl<'py> FromPyObject<'py> for &'py PyRuntimeWarning

source§

impl<'py> FromPyObject<'py> for &'py PyStopAsyncIteration

source§

impl<'py> FromPyObject<'py> for &'py PyStopIteration

source§

impl<'py> FromPyObject<'py> for &'py PySyntaxError

source§

impl<'py> FromPyObject<'py> for &'py PySyntaxWarning

source§

impl<'py> FromPyObject<'py> for &'py PySystemError

source§

impl<'py> FromPyObject<'py> for &'py PySystemExit

source§

impl<'py> FromPyObject<'py> for &'py PyTimeoutError

source§

impl<'py> FromPyObject<'py> for &'py PyTypeError

source§

impl<'py> FromPyObject<'py> for &'py PyUnboundLocalError

source§

impl<'py> FromPyObject<'py> for &'py PyUnicodeDecodeError

source§

impl<'py> FromPyObject<'py> for &'py PyUnicodeEncodeError

source§

impl<'py> FromPyObject<'py> for &'py PyUnicodeError

source§

impl<'py> FromPyObject<'py> for &'py PyUnicodeTranslateError

source§

impl<'py> FromPyObject<'py> for &'py PyUnicodeWarning

source§

impl<'py> FromPyObject<'py> for &'py PyUserWarning

source§

impl<'py> FromPyObject<'py> for &'py PyValueError

source§

impl<'py> FromPyObject<'py> for &'py PyWarning

source§

impl<'py> FromPyObject<'py> for &'py PyZeroDivisionError

source§

impl<'py> FromPyObject<'py> for &'py PanicException

source§

impl<'py> FromPyObject<'py> for &'py PyAny

source§

impl<'py> FromPyObject<'py> for &'py PyBool

source§

impl<'py> FromPyObject<'py> for &'py PyByteArray

source§

impl<'py> FromPyObject<'py> for &'py PyBytes

source§

impl<'py> FromPyObject<'py> for &'py PyCFunction

source§

impl<'py> FromPyObject<'py> for &'py PyCapsule

source§

impl<'py> FromPyObject<'py> for &'py PyCode

source§

impl<'py> FromPyObject<'py> for &'py PyComplex

source§

impl<'py> FromPyObject<'py> for &'py PyDate

source§

impl<'py> FromPyObject<'py> for &'py PyDateTime

source§

impl<'py> FromPyObject<'py> for &'py PyDelta

source§

impl<'py> FromPyObject<'py> for &'py PyDict

source§

impl<'py> FromPyObject<'py> for &'py PyDictItems

source§

impl<'py> FromPyObject<'py> for &'py PyDictKeys

source§

impl<'py> FromPyObject<'py> for &'py PyDictValues

source§

impl<'py> FromPyObject<'py> for &'py PyEllipsis

source§

impl<'py> FromPyObject<'py> for &'py PyFloat

source§

impl<'py> FromPyObject<'py> for &'py PyFrame

source§

impl<'py> FromPyObject<'py> for &'py PyFrozenSet

source§

impl<'py> FromPyObject<'py> for &'py PyFunction

source§

impl<'py> FromPyObject<'py> for &'py PyIterator

source§

impl<'py> FromPyObject<'py> for &'py PyList

source§

impl<'py> FromPyObject<'py> for &'py PyLong

source§

impl<'py> FromPyObject<'py> for &'py PyMapping

source§

impl<'py> FromPyObject<'py> for &'py PyMemoryView

source§

impl<'py> FromPyObject<'py> for &'py PyModule

source§

impl<'py> FromPyObject<'py> for &'py PyNone

source§

impl<'py> FromPyObject<'py> for &'py PyNotImplemented

source§

impl<'py> FromPyObject<'py> for &'py PySequence

source§

impl<'py> FromPyObject<'py> for &'py PySet

source§

impl<'py> FromPyObject<'py> for &'py PySlice

source§

impl<'py> FromPyObject<'py> for &'py PyString

source§

impl<'py> FromPyObject<'py> for &'py PySuper

source§

impl<'py> FromPyObject<'py> for &'py PyTime

source§

impl<'py> FromPyObject<'py> for &'py PyTraceback

source§

impl<'py> FromPyObject<'py> for &'py PyTuple

source§

impl<'py> FromPyObject<'py> for &'py PyType

source§

impl<'py> FromPyObject<'py> for &'py PyTzInfo

source§

impl<'py, T> FromPyObject<'py> for &'py PyCell<T>
where T: PyClass,

source§

impl<'py, T> FromPyObject<'py> for Bound<'py, T>
where T: PyTypeCheck,

source§

impl<'py, T> FromPyObject<'py> for PyRef<'py, T>
where T: PyClass,

source§

impl<'py, T> FromPyObject<'py> for PyRefMut<'py, T>
where T: PyClass<Frozen = False>,

source§

impl<'py, T: Element> FromPyObject<'py> for PyBuffer<T>

source§

impl<T> FromPyObject<'_> for Py<T>
where T: PyTypeCheck,

source§

impl<T> FromPyObject<'_> for T
where T: PyClass + Clone,