pub trait ToPyResult<T> { // Required method fn to_py(self) -> PyResult<T>; }
Helper trait for converting Results to Python-compatible Results