pub fn parse_attribute_list<'a, T, I>(
    ident: &'a Ident,
    attrs: I
) -> impl Iterator<Item = T> + 'awhere
    T: 'a + ArgumentList,
    I: IntoIterator<Item = &'a Attribute> + 'a,
Expand description

Parses a list of attributes for a given ident and type