1use proc_macro2::Ident;
2use syn::Path;
34use crate::ast::NestedMeta;
5use crate::util::PathList;
6use crate::{Error, FromField, FromMeta, Result};
78use super::ParseAttribute;
910/// The `attrs` magic field and attributes that influence its behavior.
11#[derive(Debug, Clone)]
12pub struct AttrsField {
13/// The ident of the field that will receive the forwarded attributes.
14pub ident: Ident,
15/// Path of the function that will be called to convert the `Vec` of
16 /// forwarded attributes into the type expected by the field in `ident`.
17pub with: Option<Path>,
18}
1920impl FromField for AttrsField {
21fn from_field(field: &syn::Field) -> crate::Result<Self> {
22let result = Self {
23 ident: field.ident.clone().ok_or_else(|| {
24 Error::custom("attributes receiver must be named field").with_span(field)
25 })?,
26 with: None,
27 };
2829 result.parse_attributes(&field.attrs)
30 }
31}
3233impl ParseAttribute for AttrsField {
34fn parse_nested(&mut self, mi: &syn::Meta) -> crate::Result<()> {
35if mi.path().is_ident("with") {
36if self.with.is_some() {
37return Err(Error::duplicate_field_path(mi.path()).with_span(mi));
38 }
3940self.with = FromMeta::from_meta(mi)?;
41Ok(())
42 } else {
43Err(Error::unknown_field_path_with_alts(mi.path(), &["with"]).with_span(mi))
44 }
45 }
46}
4748/// A rule about which attributes to forward to the generated struct.
49#[derive(Debug, Clone, PartialEq, Eq)]
50pub enum ForwardAttrsFilter {
51 All,
52 Only(PathList),
53}
5455impl ForwardAttrsFilter {
56/// Returns `true` if this will not forward any attributes.
57pub fn is_empty(&self) -> bool {
58match *self {
59 ForwardAttrsFilter::All => false,
60 ForwardAttrsFilter::Only(ref list) => list.is_empty(),
61 }
62 }
63}
6465impl FromMeta for ForwardAttrsFilter {
66fn from_word() -> Result<Self> {
67Ok(ForwardAttrsFilter::All)
68 }
6970fn from_list(nested: &[NestedMeta]) -> Result<Self> {
71Ok(ForwardAttrsFilter::Only(PathList::from_list(nested)?))
72 }
73}