Trait pyo3::types::IntoPyDict

source ·
pub trait IntoPyDict {
    // Required method
    fn into_py_dict(self, py: Python<'_>) -> &PyDict;
}
Expand description

Conversion trait that allows a sequence of tuples to be converted into PyDict Primary use case for this trait is call and call_method methods as keywords argument.

Required Methods§

source

fn into_py_dict(self, py: Python<'_>) -> &PyDict

Converts self into a PyDict object pointer. Whether pointer owned or borrowed depends on implementation.

Implementors§

source§

impl<T, I> IntoPyDict for Iwhere T: PyDictItem, I: IntoIterator<Item = T>,