pub trait PythonizeDictType {
    fn create_mapping(py: Python<'_>) -> PyResult<&PyMapping>;
}
Expand description

Trait for types which can represent a Python mapping

Required Methods

Constructor

Implementations on Foreign Types

Implementors