(input: proc_macro::TokenStream)
| 258 | #[proc_macro_derive(Payload)] |
| 259 | #[proc_macro_error] |
| 260 | pub fn derive_payload(input: proc_macro::TokenStream) -> proc_macro::TokenStream { |
| 261 | let input = syn::parse(input).unwrap(); |
| 262 | payload::r#impl::impl_payload(&input).into() |
| 263 | } |
| 264 | |
| 265 | struct SchemaErr { |
| 266 | code: LitStr, |
nothing calls this directly
no test coverage detected