Trait pyo3::types::IntoPyDict
source · pub trait IntoPyDict: Sized {
// Required method
fn into_py_dict(self, py: Python<'_>) -> Bound<'_, PyDict>;
// Provided method
fn into_py_dict_bound(self, py: Python<'_>) -> Bound<'_, 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§
sourcefn into_py_dict(self, py: Python<'_>) -> Bound<'_, PyDict>
fn into_py_dict(self, py: Python<'_>) -> Bound<'_, PyDict>
Converts self into a PyDict
object pointer. Whether pointer owned or borrowed
depends on implementation.
Provided Methods§
sourcefn into_py_dict_bound(self, py: Python<'_>) -> Bound<'_, PyDict>
👎Deprecated since 0.23.0: renamed to IntoPyDict::into_py_dict
fn into_py_dict_bound(self, py: Python<'_>) -> Bound<'_, PyDict>
IntoPyDict::into_py_dict
Deprecated name for IntoPyDict::into_py_dict
.
Object Safety§
This trait is not object safe.