| 12 | use syn::{Data, DataEnum, DataStruct, DeriveInput, Error, Fields, Result, Type, Variant, parse_quote}; |
| 13 | |
| 14 | trait Plan { |
| 15 | fn render(&self, wc: &mut WhereCollector) -> TokenStream; |
| 16 | } |
| 17 | |
| 18 | trait TypeIsOption { |
| 19 | fn is_option(&self) -> bool; |
nothing calls this directly
no outgoing calls
no test coverage detected