(&self)
| 194 | } |
| 195 | |
| 196 | fn expand(&self) -> syn::Result<TokenStream> { |
| 197 | let expanded_impl_active_enum = self.impl_active_enum(); |
| 198 | |
| 199 | Ok(expanded_impl_active_enum) |
| 200 | } |
| 201 | |
| 202 | fn impl_active_enum(&self) -> TokenStream { |
| 203 | let Self { |
no test coverage detected