Trait pythonize::PythonizeDictType
source · pub trait PythonizeDictType {
// Required method
fn create_mapping(py: Python<'_>) -> PyResult<&PyMapping>;
}Expand description
Trait for types which can represent a Python mapping
Required Methods§
sourcefn create_mapping(py: Python<'_>) -> PyResult<&PyMapping>
fn create_mapping(py: Python<'_>) -> PyResult<&PyMapping>
Constructor
Object Safety§
This trait is not object safe.