//dbg!(field);
let fname = &field.ident.as_ref().unwrap();
let fname_span = fname.span();
- let mut skl = Some(quote_spanned!{fname_span=> SectionKindList::PerClient });
+ let mut skl = None;
let mut method = quote_spanned!{fname_span=> ordinary };
for attr in &field.attrs {
let atspan = attr.path.segments.last().unwrap().ident.span();
method = attr.path.to_token_stream();
if &attr.path == &parse_quote!{ limited } {
skl = Some(quote_spanned!{atspan=> SectionKindList::Limited });
+ } else if &attr.path == &parse_quote!{ client } {
+ skl = Some(quote_spanned!{atspan=> SectionKindList::PerClient });
} else if &attr.path == &parse_quote!{ computed } {
skl = Some(quote_spanned!{atspan=> SectionKindList::None });
}