useproc_macro::TokenStream;usesyn::{parse_macro_input, DeriveInput};#[proc_macro_derive(LookInside)]pubfnlook_inside(input: TokenStream)-> TokenStream{// Parse the input tokens into a syntax tree
let input =parse_macro_input!(input as DeriveInput);panic!("{:#?}", input);}