procmeta_core/
parser.rs

1use syn::Meta;
2
3pub trait MetaParser: Sized {
4    fn parse(meta: &Meta) -> syn::Result<Self>;
5}