pub trait ToPythonError {
// Required method
fn to_py_err(self) -> PyErr;
}Expand description
Implemented by error types generated with py_wrap_error.
Trait-ifies the ability to convert an error into a PyErr.
pub trait ToPythonError {
// Required method
fn to_py_err(self) -> PyErr;
}Implemented by error types generated with py_wrap_error.
Trait-ifies the ability to convert an error into a PyErr.