pub trait IntoPyObjectNautilusExt<'py>: IntoPyObjectExt<'py> {
// Provided method
fn into_py_any_unwrap(self, py: Python<'py>) -> PyObject { ... }
}
Expand description
Extend IntoPyObjectExt
helper trait to unwrap PyObject
after conversion.
Provided Methods§
fn into_py_any_unwrap(self, py: Python<'py>) -> PyObject
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.