| 8 | } |
| 9 | |
| 10 | trait AsNullablePythonCompat<T: AsPythonCompat> { |
| 11 | fn as_python_compat(&self, parser: &Parser) -> Value; |
| 12 | } |
| 13 | |
| 14 | impl<T: AsPythonCompat> AsNullablePythonCompat<T> for Option<T> { |
| 15 | fn as_python_compat(&self, parser: &Parser) -> Value { |
nothing calls this directly
no outgoing calls
no test coverage detected