use proc_macro::TokenStream; #[proc_macro_derive(HelloDerive)] pub fn hello_derive(_input: TokenStream) -> TokenStream { TokenStream::new() }