1use darling::ast::NestedMeta; 2 3pub trait MatchNestedMeta: Sized { 4 fn match_nested_meta(meta: &NestedMeta) -> Option<darling::Result<Self>>; 5}