pub trait IntoPython {
// Required method
fn into_python(self, py: Python<'_>) -> PyResult<Py<PyAny>>;
}Expand description
Trait for converting Rust types to Python objects
pub trait IntoPython {
// Required method
fn into_python(self, py: Python<'_>) -> PyResult<Py<PyAny>>;
}Trait for converting Rust types to Python objects