blob: deddd1521ad46c60d30ffd5aad2535037cbfcb43 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![deny(clippy::all, clippy::pedantic)]
mod reflection;
mod util;
#[proc_macro_derive(Reflection, attributes(reflection))]
pub fn reflection_derive(input: proc_macro::TokenStream) -> proc_macro::TokenStream
{
reflection::derive(input.into()).into()
}
|