| 166 | } |
| 167 | |
| 168 | pub trait CallbackConverter<S> { |
| 169 | type R; |
| 170 | |
| 171 | fn convert(val: S, py: Python) -> Self::R; |
| 172 | fn error_value() -> Self::R; |
| 173 | } |
| 174 | |
| 175 | pub struct PyObjectCallbackConverter; |
| 176 |
nothing calls this directly
no outgoing calls
no test coverage detected