Trait IntoPyObjectNautilusExt

Source
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§

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.

Implementors§

Source§

impl<'py, T> IntoPyObjectNautilusExt<'py> for T
where T: IntoPyObjectExt<'py>,