[−][src]Trait pyo3::conversion::PyTryInto
Trait implemented by Python object types that allow a checked downcast.
This trait is similar to std::convert::TryInto
Required methods
fn try_into(&self) -> Result<&T, PyDowncastError>
Cast from PyObject to a concrete Python object type.
fn try_into_exact(&self) -> Result<&T, PyDowncastError>
Cast from PyObject to a concrete Python object type. With exact type check.
Implementors
impl<U> PyTryInto<U> for PyAny where
U: for<'v> PyTryFrom<'v>,
[src]
U: for<'v> PyTryFrom<'v>,