| 4 | use serde_json::{json, Value}; |
| 5 | |
| 6 | pub trait AsPythonCompat { |
| 7 | fn as_python_compat(&self, parser: &Parser) -> Value; |
| 8 | } |
| 9 | |
| 10 | trait AsNullablePythonCompat<T: AsPythonCompat> { |
| 11 | fn as_python_compat(&self, parser: &Parser) -> Value; |
nothing calls this directly
no outgoing calls
no test coverage detected