1
2
3
4
5
use syn::Meta;

pub trait MetaParser: Sized {
    fn parse(meta: &Meta) -> syn::Result<Self>;
}