Skip to main content

rustc_attr_parsing/
context.rs

1use std::cell::RefCell;
2use std::collections::BTreeMap;
3use std::ops::{Deref, DerefMut};
4use std::sync::LazyLock;
5
6use private::Sealed;
7use rustc_ast::{AttrStyle, MetaItemLit, NodeId};
8use rustc_errors::{Diag, Diagnostic, Level};
9use rustc_feature::{AttrSuggestionStyle, AttributeTemplate};
10use rustc_hir::attrs::AttributeKind;
11use rustc_hir::lints::AttributeLintKind;
12use rustc_hir::{AttrPath, HirId};
13use rustc_parse::parser::Recovery;
14use rustc_session::Session;
15use rustc_session::lint::{Lint, LintId};
16use rustc_span::{ErrorGuaranteed, Span, Symbol};
17
18use crate::AttributeParser;
19// Glob imports to avoid big, bitrotty import lists
20use crate::attributes::allow_unstable::*;
21use crate::attributes::body::*;
22use crate::attributes::cfi_encoding::*;
23use crate::attributes::codegen_attrs::*;
24use crate::attributes::confusables::*;
25use crate::attributes::crate_level::*;
26use crate::attributes::debugger::*;
27use crate::attributes::deprecation::*;
28use crate::attributes::do_not_recommend::*;
29use crate::attributes::doc::*;
30use crate::attributes::dummy::*;
31use crate::attributes::inline::*;
32use crate::attributes::instruction_set::*;
33use crate::attributes::link_attrs::*;
34use crate::attributes::lint_helpers::*;
35use crate::attributes::loop_match::*;
36use crate::attributes::macro_attrs::*;
37use crate::attributes::must_not_suspend::*;
38use crate::attributes::must_use::*;
39use crate::attributes::no_implicit_prelude::*;
40use crate::attributes::no_link::*;
41use crate::attributes::non_exhaustive::*;
42use crate::attributes::path::PathParser as PathAttributeParser;
43use crate::attributes::pin_v2::*;
44use crate::attributes::proc_macro_attrs::*;
45use crate::attributes::prototype::*;
46use crate::attributes::repr::*;
47use crate::attributes::rustc_allocator::*;
48use crate::attributes::rustc_dump::*;
49use crate::attributes::rustc_internal::*;
50use crate::attributes::semantics::*;
51use crate::attributes::stability::*;
52use crate::attributes::test_attrs::*;
53use crate::attributes::traits::*;
54use crate::attributes::transparency::*;
55use crate::attributes::{AttributeParser as _, Combine, Single, WithoutArgs};
56use crate::parser::{ArgParser, RefPathParser};
57use crate::session_diagnostics::{
58    AttributeParseError, AttributeParseErrorReason, ParsedDescription,
59};
60use crate::target_checking::AllowedTargets;
61type GroupType<S> = LazyLock<GroupTypeInner<S>>;
62
63pub(super) struct GroupTypeInner<S: Stage> {
64    pub(super) accepters: BTreeMap<&'static [Symbol], Vec<GroupTypeInnerAccept<S>>>,
65}
66
67pub(super) struct GroupTypeInnerAccept<S: Stage> {
68    pub(super) template: AttributeTemplate,
69    pub(super) accept_fn: AcceptFn<S>,
70    pub(super) allowed_targets: AllowedTargets,
71    pub(super) finalizer: FinalizeFn<S>,
72}
73
74pub(crate) type AcceptFn<S> =
75    Box<dyn for<'sess, 'a> Fn(&mut AcceptContext<'_, 'sess, S>, &ArgParser) + Send + Sync>;
76pub(crate) type FinalizeFn<S> =
77    Box<dyn Send + Sync + Fn(&mut FinalizeContext<'_, '_, S>) -> Option<AttributeKind>>;
78
79macro_rules! attribute_parsers {
80    (
81        pub(crate) static $name: ident = [$($names: ty),* $(,)?];
82    ) => {
83        mod early {
84            use super::*;
85            type Combine<T> = super::Combine<T, Early>;
86            type Single<T> = super::Single<T, Early>;
87            type WithoutArgs<T> = super::WithoutArgs<T, Early>;
88
89            attribute_parsers!(@[Early] pub(crate) static $name = [$($names),*];);
90        }
91        mod late {
92            use super::*;
93            type Combine<T> = super::Combine<T, Late>;
94            type Single<T> = super::Single<T, Late>;
95            type WithoutArgs<T> = super::WithoutArgs<T, Late>;
96
97            attribute_parsers!(@[Late] pub(crate) static $name = [$($names),*];);
98        }
99    };
100    (
101        @[$stage: ty] pub(crate) static $name: ident = [$($names: ty),* $(,)?];
102    ) => {
103        pub(crate) static $name: GroupType<$stage> = LazyLock::new(|| {
104            let mut accepters = BTreeMap::<_, Vec<GroupTypeInnerAccept<$stage>>>::new();
105            $(
106                {
107                    thread_local! {
108                        static STATE_OBJECT: RefCell<$names> = RefCell::new(<$names>::default());
109                    };
110
111                    for (path, template, accept_fn) in <$names>::ATTRIBUTES {
112                        accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
113                            template: *template,
114                            accept_fn: Box::new(|cx, args| {
115                                STATE_OBJECT.with_borrow_mut(|s| {
116                                    accept_fn(s, cx, args)
117                                })
118                            }),
119                            allowed_targets: <$names as crate::attributes::AttributeParser<$stage>>::ALLOWED_TARGETS,
120                            finalizer: Box::new(|cx| {
121                                let state = STATE_OBJECT.take();
122                                state.finalize(cx)
123                            }),
124                        });
125                    }
126                }
127            )*
128
129            GroupTypeInner { accepters }
130        });
131    };
132}
133mod early {
    use super::*;
    type Combine<T> = super::Combine<T, Early>;
    type Single<T> = super::Single<T, Early>;
    type WithoutArgs<T> = super::WithoutArgs<T, Early>;
    pub(crate) static ATTRIBUTE_PARSERS: GroupType<Early> =
        LazyLock::new(||
                {
                    let mut accepters =
                        BTreeMap::<_, Vec<GroupTypeInnerAccept<Early>>>::new();
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<AlignParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<AlignParser> {
                                    RefCell::new(<AlignParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<AlignParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <AlignParser>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <AlignParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<AlignStaticParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<AlignStaticParser> {
                                    RefCell::new(<AlignStaticParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<AlignStaticParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignStaticParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignStaticParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <AlignStaticParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <AlignStaticParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<BodyStabilityParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<BodyStabilityParser> {
                                    RefCell::new(<BodyStabilityParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<BodyStabilityParser>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<BodyStabilityParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<BodyStabilityParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <BodyStabilityParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <BodyStabilityParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<ConfusablesParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<ConfusablesParser> {
                                    RefCell::new(<ConfusablesParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<ConfusablesParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConfusablesParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConfusablesParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <ConfusablesParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <ConfusablesParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<ConstStabilityParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<ConstStabilityParser> {
                                    RefCell::new(<ConstStabilityParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<ConstStabilityParser>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConstStabilityParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConstStabilityParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <ConstStabilityParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <ConstStabilityParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<DocParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<DocParser> {
                                    RefCell::new(<DocParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<DocParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<DocParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<DocParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <DocParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <DocParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<MacroUseParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<MacroUseParser> {
                                    RefCell::new(<MacroUseParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<MacroUseParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<MacroUseParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<MacroUseParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <MacroUseParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <MacroUseParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<NakedParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<NakedParser> {
                                    RefCell::new(<NakedParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<NakedParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<NakedParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<NakedParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <NakedParser>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <NakedParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<StabilityParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<StabilityParser> {
                                    RefCell::new(<StabilityParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<StabilityParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<StabilityParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<StabilityParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <StabilityParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <StabilityParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<UsedParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<UsedParser> {
                                    RefCell::new(<UsedParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<UsedParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<UsedParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<UsedParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <UsedParser>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <UsedParser as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<AllowConstFnUnstableParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<AllowConstFnUnstableParser>> {
                                    RefCell::new(<Combine<AllowConstFnUnstableParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<AllowConstFnUnstableParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowConstFnUnstableParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowConstFnUnstableParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<AllowConstFnUnstableParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<AllowConstFnUnstableParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<AllowInternalUnstableParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<AllowInternalUnstableParser>> {
                                    RefCell::new(<Combine<AllowInternalUnstableParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<AllowInternalUnstableParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowInternalUnstableParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowInternalUnstableParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<AllowInternalUnstableParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<AllowInternalUnstableParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<CrateTypeParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<CrateTypeParser>> {
                                    RefCell::new(<Combine<CrateTypeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<CrateTypeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<CrateTypeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<CrateTypeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<CrateTypeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<CrateTypeParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<DebuggerViualizerParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<DebuggerViualizerParser>> {
                                    RefCell::new(<Combine<DebuggerViualizerParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<DebuggerViualizerParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<DebuggerViualizerParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<DebuggerViualizerParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<DebuggerViualizerParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<DebuggerViualizerParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<ForceTargetFeatureParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<ForceTargetFeatureParser>> {
                                    RefCell::new(<Combine<ForceTargetFeatureParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<ForceTargetFeatureParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ForceTargetFeatureParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ForceTargetFeatureParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<ForceTargetFeatureParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<ForceTargetFeatureParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<LinkParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<LinkParser>> {
                                    RefCell::new(<Combine<LinkParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<LinkParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<LinkParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<LinkParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<LinkParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<LinkParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<ReprParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<ReprParser>> {
                                    RefCell::new(<Combine<ReprParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<ReprParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ReprParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ReprParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<ReprParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<ReprParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcCleanParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcCleanParser>> {
                                    RefCell::new(<Combine<RustcCleanParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcCleanParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcCleanParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcCleanParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcCleanParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcCleanParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcLayoutParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcLayoutParser>> {
                                    RefCell::new(<Combine<RustcLayoutParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcLayoutParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcLayoutParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcLayoutParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcLayoutParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcLayoutParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcMirParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcMirParser>> {
                                    RefCell::new(<Combine<RustcMirParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcMirParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcMirParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcMirParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcMirParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcMirParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcThenThisWouldNeedParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcThenThisWouldNeedParser>> {
                                    RefCell::new(<Combine<RustcThenThisWouldNeedParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcThenThisWouldNeedParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcThenThisWouldNeedParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcThenThisWouldNeedParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcThenThisWouldNeedParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcThenThisWouldNeedParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<TargetFeatureParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<TargetFeatureParser>> {
                                    RefCell::new(<Combine<TargetFeatureParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<TargetFeatureParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<TargetFeatureParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<TargetFeatureParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<TargetFeatureParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<TargetFeatureParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<UnstableFeatureBoundParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<UnstableFeatureBoundParser>> {
                                    RefCell::new(<Combine<UnstableFeatureBoundParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<UnstableFeatureBoundParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<UnstableFeatureBoundParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<UnstableFeatureBoundParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<UnstableFeatureBoundParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<UnstableFeatureBoundParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CfiEncodingParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CfiEncodingParser>> {
                                    RefCell::new(<Single<CfiEncodingParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CfiEncodingParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CfiEncodingParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CfiEncodingParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CfiEncodingParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CfiEncodingParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CollapseDebugInfoParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CollapseDebugInfoParser>> {
                                    RefCell::new(<Single<CollapseDebugInfoParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CollapseDebugInfoParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CollapseDebugInfoParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CollapseDebugInfoParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CollapseDebugInfoParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CollapseDebugInfoParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CoverageParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CoverageParser>> {
                                    RefCell::new(<Single<CoverageParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CoverageParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CoverageParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CoverageParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CoverageParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CoverageParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CrateNameParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CrateNameParser>> {
                                    RefCell::new(<Single<CrateNameParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CrateNameParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CrateNameParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CrateNameParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CrateNameParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CrateNameParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CustomMirParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CustomMirParser>> {
                                    RefCell::new(<Single<CustomMirParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CustomMirParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CustomMirParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CustomMirParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CustomMirParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CustomMirParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<DeprecationParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<DeprecationParser>> {
                                    RefCell::new(<Single<DeprecationParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<DeprecationParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DeprecationParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DeprecationParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<DeprecationParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<DeprecationParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<DoNotRecommendParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<DoNotRecommendParser>> {
                                    RefCell::new(<Single<DoNotRecommendParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<DoNotRecommendParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DoNotRecommendParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DoNotRecommendParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<DoNotRecommendParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<DoNotRecommendParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<DummyParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<DummyParser>> {
                                    RefCell::new(<Single<DummyParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<DummyParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DummyParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DummyParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<DummyParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<DummyParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ExportNameParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ExportNameParser>> {
                                    RefCell::new(<Single<ExportNameParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ExportNameParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ExportNameParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ExportNameParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ExportNameParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ExportNameParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<IgnoreParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<IgnoreParser>> {
                                    RefCell::new(<Single<IgnoreParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<IgnoreParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<IgnoreParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<IgnoreParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<IgnoreParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<IgnoreParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<InlineParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<InlineParser>> {
                                    RefCell::new(<Single<InlineParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<InlineParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InlineParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InlineParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<InlineParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<InlineParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<InstructionSetParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<InstructionSetParser>> {
                                    RefCell::new(<Single<InstructionSetParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<InstructionSetParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InstructionSetParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InstructionSetParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<InstructionSetParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<InstructionSetParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkNameParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkNameParser>> {
                                    RefCell::new(<Single<LinkNameParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkNameParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkNameParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkNameParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkNameParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkNameParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkOrdinalParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkOrdinalParser>> {
                                    RefCell::new(<Single<LinkOrdinalParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkOrdinalParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkOrdinalParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkOrdinalParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkOrdinalParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkOrdinalParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkSectionParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkSectionParser>> {
                                    RefCell::new(<Single<LinkSectionParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkSectionParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkSectionParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkSectionParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkSectionParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkSectionParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkageParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkageParser>> {
                                    RefCell::new(<Single<LinkageParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkageParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkageParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkageParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkageParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkageParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MacroExportParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MacroExportParser>> {
                                    RefCell::new(<Single<MacroExportParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MacroExportParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MacroExportParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MacroExportParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MacroExportParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MacroExportParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MoveSizeLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MoveSizeLimitParser>> {
                                    RefCell::new(<Single<MoveSizeLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MoveSizeLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MoveSizeLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MoveSizeLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MoveSizeLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MoveSizeLimitParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MustNotSuspendParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MustNotSuspendParser>> {
                                    RefCell::new(<Single<MustNotSuspendParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MustNotSuspendParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustNotSuspendParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustNotSuspendParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MustNotSuspendParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MustNotSuspendParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MustUseParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MustUseParser>> {
                                    RefCell::new(<Single<MustUseParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MustUseParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustUseParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustUseParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MustUseParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MustUseParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ObjcClassParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ObjcClassParser>> {
                                    RefCell::new(<Single<ObjcClassParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ObjcClassParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcClassParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcClassParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ObjcClassParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ObjcClassParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ObjcSelectorParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ObjcSelectorParser>> {
                                    RefCell::new(<Single<ObjcSelectorParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ObjcSelectorParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcSelectorParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcSelectorParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ObjcSelectorParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ObjcSelectorParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<OptimizeParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<OptimizeParser>> {
                                    RefCell::new(<Single<OptimizeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<OptimizeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<OptimizeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<OptimizeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<OptimizeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<OptimizeParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<PatchableFunctionEntryParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<PatchableFunctionEntryParser>> {
                                    RefCell::new(<Single<PatchableFunctionEntryParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<PatchableFunctionEntryParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatchableFunctionEntryParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatchableFunctionEntryParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<PatchableFunctionEntryParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<PatchableFunctionEntryParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<PathAttributeParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<PathAttributeParser>> {
                                    RefCell::new(<Single<PathAttributeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<PathAttributeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PathAttributeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PathAttributeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<PathAttributeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<PathAttributeParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<PatternComplexityLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<PatternComplexityLimitParser>> {
                                    RefCell::new(<Single<PatternComplexityLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<PatternComplexityLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatternComplexityLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatternComplexityLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<PatternComplexityLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<PatternComplexityLimitParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ProcMacroDeriveParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ProcMacroDeriveParser>> {
                                    RefCell::new(<Single<ProcMacroDeriveParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ProcMacroDeriveParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ProcMacroDeriveParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ProcMacroDeriveParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ProcMacroDeriveParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ProcMacroDeriveParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RecursionLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RecursionLimitParser>> {
                                    RefCell::new(<Single<RecursionLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RecursionLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RecursionLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RecursionLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RecursionLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RecursionLimitParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ReexportTestHarnessMainParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ReexportTestHarnessMainParser>> {
                                    RefCell::new(<Single<ReexportTestHarnessMainParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ReexportTestHarnessMainParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ReexportTestHarnessMainParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ReexportTestHarnessMainParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ReexportTestHarnessMainParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ReexportTestHarnessMainParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcAbiParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcAbiParser>> {
                                    RefCell::new(<Single<RustcAbiParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcAbiParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAbiParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAbiParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcAbiParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcAbiParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcAllocatorZeroedVariantParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcAllocatorZeroedVariantParser>> {
                                    RefCell::new(<Single<RustcAllocatorZeroedVariantParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcAllocatorZeroedVariantParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAllocatorZeroedVariantParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAllocatorZeroedVariantParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcAllocatorZeroedVariantParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcAllocatorZeroedVariantParser>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcBuiltinMacroParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcBuiltinMacroParser>> {
                                    RefCell::new(<Single<RustcBuiltinMacroParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcBuiltinMacroParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcBuiltinMacroParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcBuiltinMacroParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcBuiltinMacroParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcBuiltinMacroParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcForceInlineParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcForceInlineParser>> {
                                    RefCell::new(<Single<RustcForceInlineParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcForceInlineParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcForceInlineParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcForceInlineParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcForceInlineParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcForceInlineParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcIfThisChangedParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcIfThisChangedParser>> {
                                    RefCell::new(<Single<RustcIfThisChangedParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcIfThisChangedParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcIfThisChangedParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcIfThisChangedParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcIfThisChangedParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcIfThisChangedParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLayoutScalarValidRangeEndParser>> {
                                    RefCell::new(<Single<RustcLayoutScalarValidRangeEndParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLayoutScalarValidRangeEndParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLayoutScalarValidRangeEndParser>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLayoutScalarValidRangeStartParser>> {
                                    RefCell::new(<Single<RustcLayoutScalarValidRangeStartParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLayoutScalarValidRangeStartParser>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLayoutScalarValidRangeStartParser>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLegacyConstGenericsParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLegacyConstGenericsParser>> {
                                    RefCell::new(<Single<RustcLegacyConstGenericsParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLegacyConstGenericsParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLegacyConstGenericsParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLegacyConstGenericsParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLegacyConstGenericsParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLegacyConstGenericsParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLintOptDenyFieldAccessParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLintOptDenyFieldAccessParser>> {
                                    RefCell::new(<Single<RustcLintOptDenyFieldAccessParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLintOptDenyFieldAccessParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLintOptDenyFieldAccessParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLintOptDenyFieldAccessParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLintOptDenyFieldAccessParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLintOptDenyFieldAccessParser>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcMustImplementOneOfParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcMustImplementOneOfParser>> {
                                    RefCell::new(<Single<RustcMustImplementOneOfParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcMustImplementOneOfParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcMustImplementOneOfParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcMustImplementOneOfParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcMustImplementOneOfParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcMustImplementOneOfParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcObjectLifetimeDefaultParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcObjectLifetimeDefaultParser>> {
                                    RefCell::new(<Single<RustcObjectLifetimeDefaultParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcObjectLifetimeDefaultParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcObjectLifetimeDefaultParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcObjectLifetimeDefaultParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcObjectLifetimeDefaultParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcObjectLifetimeDefaultParser>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcScalableVectorParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcScalableVectorParser>> {
                                    RefCell::new(<Single<RustcScalableVectorParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcScalableVectorParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcScalableVectorParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcScalableVectorParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcScalableVectorParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcScalableVectorParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>> {
                                    RefCell::new(<Single<RustcSimdMonomorphizeLaneLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcSimdMonomorphizeLaneLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcSimdMonomorphizeLaneLimitParser>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<SanitizeParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<SanitizeParser>> {
                                    RefCell::new(<Single<SanitizeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<SanitizeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SanitizeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SanitizeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<SanitizeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<SanitizeParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ShouldPanicParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ShouldPanicParser>> {
                                    RefCell::new(<Single<ShouldPanicParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ShouldPanicParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ShouldPanicParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ShouldPanicParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ShouldPanicParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ShouldPanicParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<SkipDuringMethodDispatchParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<SkipDuringMethodDispatchParser>> {
                                    RefCell::new(<Single<SkipDuringMethodDispatchParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<SkipDuringMethodDispatchParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SkipDuringMethodDispatchParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SkipDuringMethodDispatchParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<SkipDuringMethodDispatchParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<SkipDuringMethodDispatchParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<TransparencyParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<TransparencyParser>> {
                                    RefCell::new(<Single<TransparencyParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<TransparencyParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TransparencyParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TransparencyParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<TransparencyParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<TransparencyParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<TypeLengthLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<TypeLengthLimitParser>> {
                                    RefCell::new(<Single<TypeLengthLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<TypeLengthLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TypeLengthLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TypeLengthLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<TypeLengthLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<TypeLengthLimitParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WindowsSubsystemParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WindowsSubsystemParser>> {
                                    RefCell::new(<Single<WindowsSubsystemParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WindowsSubsystemParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WindowsSubsystemParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WindowsSubsystemParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WindowsSubsystemParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WindowsSubsystemParser> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AllowIncoherentImplParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AllowIncoherentImplParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AllowIncoherentImplParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AllowInternalUnsafeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AllowInternalUnsafeParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AllowInternalUnsafeParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AsPtrParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<AsPtrParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AsPtrParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AsPtrParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AsPtrParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AsPtrParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AsPtrParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AsPtrParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AutomaticallyDerivedParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AutomaticallyDerivedParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AutomaticallyDerivedParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<CoinductiveParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<CoinductiveParser>>> {
                                    RefCell::new(<Single<WithoutArgs<CoinductiveParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<CoinductiveParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoinductiveParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoinductiveParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<CoinductiveParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<CoinductiveParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ColdParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ColdParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ColdParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ColdParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ColdParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ColdParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ColdParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ColdParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<CompilerBuiltinsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<CompilerBuiltinsParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<CompilerBuiltinsParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ConstContinueParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ConstContinueParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ConstContinueParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ConstContinueParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstContinueParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstContinueParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ConstContinueParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ConstContinueParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ConstStabilityIndirectParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ConstStabilityIndirectParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ConstStabilityIndirectParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<CoroutineParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<CoroutineParser>>> {
                                    RefCell::new(<Single<WithoutArgs<CoroutineParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<CoroutineParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoroutineParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoroutineParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<CoroutineParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<CoroutineParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<DenyExplicitImplParser>>> {
                                    RefCell::new(<Single<WithoutArgs<DenyExplicitImplParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<DenyExplicitImplParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<DenyExplicitImplParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>> {
                                    RefCell::new(<Single<WithoutArgs<DynIncompatibleTraitParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<DynIncompatibleTraitParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<DynIncompatibleTraitParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<EiiForeignItemParser>>> {
                                    RefCell::new(<Single<WithoutArgs<EiiForeignItemParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<EiiForeignItemParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<EiiForeignItemParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ExportStableParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ExportStableParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ExportStableParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ExportStableParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ExportStableParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ExportStableParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ExportStableParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ExportStableParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<FfiConstParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<FfiConstParser>>> {
                                    RefCell::new(<Single<WithoutArgs<FfiConstParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<FfiConstParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiConstParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiConstParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<FfiConstParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<FfiConstParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<FfiPureParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<FfiPureParser>>> {
                                    RefCell::new(<Single<WithoutArgs<FfiPureParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<FfiPureParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiPureParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiPureParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<FfiPureParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<FfiPureParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<FundamentalParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<FundamentalParser>>> {
                                    RefCell::new(<Single<WithoutArgs<FundamentalParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<FundamentalParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FundamentalParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FundamentalParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<FundamentalParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<FundamentalParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<LoopMatchParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<LoopMatchParser>>> {
                                    RefCell::new(<Single<WithoutArgs<LoopMatchParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<LoopMatchParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<LoopMatchParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<LoopMatchParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<LoopMatchParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<LoopMatchParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<MacroEscapeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<MacroEscapeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<MacroEscapeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<MacroEscapeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MacroEscapeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MacroEscapeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<MacroEscapeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<MacroEscapeParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<MarkerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<MarkerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<MarkerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<MarkerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MarkerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MarkerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<MarkerParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<MarkerParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<MayDangleParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<MayDangleParser>>> {
                                    RefCell::new(<Single<WithoutArgs<MayDangleParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<MayDangleParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MayDangleParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MayDangleParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<MayDangleParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<MayDangleParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NeedsAllocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NeedsAllocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NeedsAllocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NeedsAllocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NeedsPanicRuntimeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NeedsPanicRuntimeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NeedsPanicRuntimeParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoBuiltinsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoBuiltinsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoBuiltinsParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoBuiltinsParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoCoreParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoCoreParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoCoreParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoCoreParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoCoreParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoCoreParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoCoreParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoCoreParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoImplicitPreludeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoImplicitPreludeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoImplicitPreludeParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoLinkParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoLinkParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoLinkParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoLinkParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoLinkParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoLinkParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoLinkParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoLinkParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoMainParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoMainParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoMainParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoMainParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMainParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMainParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoMainParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoMainParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoMangleParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoMangleParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoMangleParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoMangleParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMangleParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMangleParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoMangleParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoMangleParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoStdParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoStdParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoStdParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoStdParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoStdParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoStdParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoStdParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoStdParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NonExhaustiveParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NonExhaustiveParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NonExhaustiveParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NonExhaustiveParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PanicRuntimeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PanicRuntimeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PanicRuntimeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PanicRuntimeParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ParenSugarParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ParenSugarParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ParenSugarParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ParenSugarParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ParenSugarParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ParenSugarParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ParenSugarParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ParenSugarParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PassByValueParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PassByValueParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PassByValueParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PassByValueParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PassByValueParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PassByValueParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PassByValueParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PassByValueParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PinV2Parser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PinV2Parser>>> {
                                    RefCell::new(<Single<WithoutArgs<PinV2Parser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PinV2Parser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PinV2Parser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PinV2Parser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PinV2Parser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PinV2Parser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PointeeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PointeeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PointeeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PointeeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PointeeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PointeeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PointeeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PointeeParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ProcMacroAttributeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ProcMacroAttributeParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ProcMacroAttributeParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ProcMacroParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ProcMacroParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ProcMacroParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ProcMacroParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ProcMacroParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ProcMacroParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ProfilerRuntimeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ProfilerRuntimeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ProfilerRuntimeParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PubTransparentParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PubTransparentParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PubTransparentParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PubTransparentParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PubTransparentParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PubTransparentParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PubTransparentParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PubTransparentParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcAllocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcAllocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcAllocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcAllocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcAllocatorZeroedParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcAllocatorZeroedParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcAllocatorZeroedParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcCoherenceIsCoreParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcCoherenceIsCoreParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDeallocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDeallocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDeallocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDeallocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpDefParentsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpDefParentsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpDefParentsParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpItemBoundsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpItemBoundsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpItemBoundsParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpPredicatesParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpPredicatesParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpPredicatesParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpUserArgsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpUserArgsParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpUserArgsParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpVtableParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpVtableParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpVtableParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpVtableParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcEffectiveVisibilityParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcEffectiveVisibilityParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcLintOptTyParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcLintOptTyParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcLintOptTyParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcLintOptTyParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcLintQueryInstabilityParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcLintQueryInstabilityParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcMainParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcMainParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcMainParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcMainParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcMainParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcMainParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcMainParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcMainParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNoImplicitAutorefsParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNonConstTraitMethodParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNonConstTraitMethodParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNounwindParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcNounwindParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNounwindParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNounwindParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNounwindParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNounwindParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNounwindParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNounwindParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcOffloadKernelParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcOffloadKernelParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcOffloadKernelParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcPreserveUbChecksParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcPreserveUbChecksParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcPreserveUbChecksParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcReallocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcReallocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcReallocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcReallocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcVarianceOfOpaquesParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcVarianceParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcVarianceParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcVarianceParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcVarianceParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcVarianceParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcVarianceParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<SpecializationTraitParser>>> {
                                    RefCell::new(<Single<WithoutArgs<SpecializationTraitParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<SpecializationTraitParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<SpecializationTraitParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<StdInternalSymbolParser>>> {
                                    RefCell::new(<Single<WithoutArgs<StdInternalSymbolParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<StdInternalSymbolParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<StdInternalSymbolParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ThreadLocalParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ThreadLocalParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ThreadLocalParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ThreadLocalParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ThreadLocalParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ThreadLocalParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ThreadLocalParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ThreadLocalParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<TrackCallerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<TrackCallerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<TrackCallerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<TrackCallerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TrackCallerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TrackCallerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<TrackCallerParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<TrackCallerParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<TypeConstParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<TypeConstParser>>> {
                                    RefCell::new(<Single<WithoutArgs<TypeConstParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<TypeConstParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TypeConstParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TypeConstParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<TypeConstParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<TypeConstParser>> as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<UnsafeSpecializationMarkerParser>>
                                        as
                                        crate::attributes::AttributeParser<Early>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    GroupTypeInner { accepters }
                });
}
mod late {
    use super::*;
    type Combine<T> = super::Combine<T, Late>;
    type Single<T> = super::Single<T, Late>;
    type WithoutArgs<T> = super::WithoutArgs<T, Late>;
    pub(crate) static ATTRIBUTE_PARSERS: GroupType<Late> =
        LazyLock::new(||
                {
                    let mut accepters =
                        BTreeMap::<_, Vec<GroupTypeInnerAccept<Late>>>::new();
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<AlignParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<AlignParser> {
                                    RefCell::new(<AlignParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<AlignParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <AlignParser>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <AlignParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<AlignStaticParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<AlignStaticParser> {
                                    RefCell::new(<AlignStaticParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<AlignStaticParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignStaticParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<AlignStaticParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <AlignStaticParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <AlignStaticParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<BodyStabilityParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<BodyStabilityParser> {
                                    RefCell::new(<BodyStabilityParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<BodyStabilityParser>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<BodyStabilityParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<BodyStabilityParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <BodyStabilityParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <BodyStabilityParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<ConfusablesParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<ConfusablesParser> {
                                    RefCell::new(<ConfusablesParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<ConfusablesParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConfusablesParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConfusablesParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <ConfusablesParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <ConfusablesParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<ConstStabilityParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<ConstStabilityParser> {
                                    RefCell::new(<ConstStabilityParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<ConstStabilityParser>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConstStabilityParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<ConstStabilityParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <ConstStabilityParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <ConstStabilityParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<DocParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<DocParser> {
                                    RefCell::new(<DocParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<DocParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<DocParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<DocParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <DocParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <DocParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<MacroUseParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<MacroUseParser> {
                                    RefCell::new(<MacroUseParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<MacroUseParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<MacroUseParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<MacroUseParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <MacroUseParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <MacroUseParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<NakedParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<NakedParser> {
                                    RefCell::new(<NakedParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<NakedParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<NakedParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<NakedParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <NakedParser>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <NakedParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<StabilityParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<StabilityParser> {
                                    RefCell::new(<StabilityParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<StabilityParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<StabilityParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<StabilityParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <StabilityParser>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <StabilityParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<UsedParser>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn() -> RefCell<UsedParser> {
                                    RefCell::new(<UsedParser>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<UsedParser>>() {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<UsedParser>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<UsedParser>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in <UsedParser>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <UsedParser as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<AllowConstFnUnstableParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<AllowConstFnUnstableParser>> {
                                    RefCell::new(<Combine<AllowConstFnUnstableParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<AllowConstFnUnstableParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowConstFnUnstableParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowConstFnUnstableParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<AllowConstFnUnstableParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<AllowConstFnUnstableParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<AllowInternalUnstableParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<AllowInternalUnstableParser>> {
                                    RefCell::new(<Combine<AllowInternalUnstableParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<AllowInternalUnstableParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowInternalUnstableParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<AllowInternalUnstableParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<AllowInternalUnstableParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<AllowInternalUnstableParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<CrateTypeParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<CrateTypeParser>> {
                                    RefCell::new(<Combine<CrateTypeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<CrateTypeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<CrateTypeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<CrateTypeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<CrateTypeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<CrateTypeParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<DebuggerViualizerParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<DebuggerViualizerParser>> {
                                    RefCell::new(<Combine<DebuggerViualizerParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<DebuggerViualizerParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<DebuggerViualizerParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<DebuggerViualizerParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<DebuggerViualizerParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<DebuggerViualizerParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<ForceTargetFeatureParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<ForceTargetFeatureParser>> {
                                    RefCell::new(<Combine<ForceTargetFeatureParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<ForceTargetFeatureParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ForceTargetFeatureParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ForceTargetFeatureParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<ForceTargetFeatureParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<ForceTargetFeatureParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<LinkParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<LinkParser>> {
                                    RefCell::new(<Combine<LinkParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<LinkParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<LinkParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<LinkParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<LinkParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<LinkParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<ReprParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<ReprParser>> {
                                    RefCell::new(<Combine<ReprParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<ReprParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ReprParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<ReprParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<ReprParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<ReprParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcCleanParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcCleanParser>> {
                                    RefCell::new(<Combine<RustcCleanParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcCleanParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcCleanParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcCleanParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcCleanParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcCleanParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcLayoutParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcLayoutParser>> {
                                    RefCell::new(<Combine<RustcLayoutParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcLayoutParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcLayoutParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcLayoutParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcLayoutParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcLayoutParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcMirParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcMirParser>> {
                                    RefCell::new(<Combine<RustcMirParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcMirParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcMirParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcMirParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcMirParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcMirParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<RustcThenThisWouldNeedParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<RustcThenThisWouldNeedParser>> {
                                    RefCell::new(<Combine<RustcThenThisWouldNeedParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<RustcThenThisWouldNeedParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcThenThisWouldNeedParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<RustcThenThisWouldNeedParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<RustcThenThisWouldNeedParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<RustcThenThisWouldNeedParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<TargetFeatureParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<TargetFeatureParser>> {
                                    RefCell::new(<Combine<TargetFeatureParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<TargetFeatureParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<TargetFeatureParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<TargetFeatureParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<TargetFeatureParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<TargetFeatureParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Combine<UnstableFeatureBoundParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Combine<UnstableFeatureBoundParser>> {
                                    RefCell::new(<Combine<UnstableFeatureBoundParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Combine<UnstableFeatureBoundParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<UnstableFeatureBoundParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Combine<UnstableFeatureBoundParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Combine<UnstableFeatureBoundParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Combine<UnstableFeatureBoundParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CfiEncodingParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CfiEncodingParser>> {
                                    RefCell::new(<Single<CfiEncodingParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CfiEncodingParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CfiEncodingParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CfiEncodingParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CfiEncodingParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CfiEncodingParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CollapseDebugInfoParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CollapseDebugInfoParser>> {
                                    RefCell::new(<Single<CollapseDebugInfoParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CollapseDebugInfoParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CollapseDebugInfoParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CollapseDebugInfoParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CollapseDebugInfoParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CollapseDebugInfoParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CoverageParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CoverageParser>> {
                                    RefCell::new(<Single<CoverageParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CoverageParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CoverageParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CoverageParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CoverageParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CoverageParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CrateNameParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CrateNameParser>> {
                                    RefCell::new(<Single<CrateNameParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CrateNameParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CrateNameParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CrateNameParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CrateNameParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CrateNameParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<CustomMirParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<CustomMirParser>> {
                                    RefCell::new(<Single<CustomMirParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<CustomMirParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CustomMirParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<CustomMirParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<CustomMirParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<CustomMirParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<DeprecationParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<DeprecationParser>> {
                                    RefCell::new(<Single<DeprecationParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<DeprecationParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DeprecationParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DeprecationParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<DeprecationParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<DeprecationParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<DoNotRecommendParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<DoNotRecommendParser>> {
                                    RefCell::new(<Single<DoNotRecommendParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<DoNotRecommendParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DoNotRecommendParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DoNotRecommendParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<DoNotRecommendParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<DoNotRecommendParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<DummyParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<DummyParser>> {
                                    RefCell::new(<Single<DummyParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<DummyParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DummyParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<DummyParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<DummyParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<DummyParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ExportNameParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ExportNameParser>> {
                                    RefCell::new(<Single<ExportNameParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ExportNameParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ExportNameParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ExportNameParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ExportNameParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ExportNameParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<IgnoreParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<IgnoreParser>> {
                                    RefCell::new(<Single<IgnoreParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<IgnoreParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<IgnoreParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<IgnoreParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<IgnoreParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<IgnoreParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<InlineParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<InlineParser>> {
                                    RefCell::new(<Single<InlineParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<InlineParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InlineParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InlineParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<InlineParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<InlineParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<InstructionSetParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<InstructionSetParser>> {
                                    RefCell::new(<Single<InstructionSetParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<InstructionSetParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InstructionSetParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<InstructionSetParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<InstructionSetParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<InstructionSetParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkNameParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkNameParser>> {
                                    RefCell::new(<Single<LinkNameParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkNameParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkNameParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkNameParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkNameParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkNameParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkOrdinalParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkOrdinalParser>> {
                                    RefCell::new(<Single<LinkOrdinalParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkOrdinalParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkOrdinalParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkOrdinalParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkOrdinalParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkOrdinalParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkSectionParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkSectionParser>> {
                                    RefCell::new(<Single<LinkSectionParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkSectionParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkSectionParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkSectionParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkSectionParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkSectionParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<LinkageParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<LinkageParser>> {
                                    RefCell::new(<Single<LinkageParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<LinkageParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkageParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<LinkageParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<LinkageParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<LinkageParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MacroExportParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MacroExportParser>> {
                                    RefCell::new(<Single<MacroExportParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MacroExportParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MacroExportParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MacroExportParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MacroExportParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MacroExportParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MoveSizeLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MoveSizeLimitParser>> {
                                    RefCell::new(<Single<MoveSizeLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MoveSizeLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MoveSizeLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MoveSizeLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MoveSizeLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MoveSizeLimitParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MustNotSuspendParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MustNotSuspendParser>> {
                                    RefCell::new(<Single<MustNotSuspendParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MustNotSuspendParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustNotSuspendParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustNotSuspendParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MustNotSuspendParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MustNotSuspendParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<MustUseParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<MustUseParser>> {
                                    RefCell::new(<Single<MustUseParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<MustUseParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustUseParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<MustUseParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<MustUseParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<MustUseParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ObjcClassParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ObjcClassParser>> {
                                    RefCell::new(<Single<ObjcClassParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ObjcClassParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcClassParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcClassParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ObjcClassParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ObjcClassParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ObjcSelectorParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ObjcSelectorParser>> {
                                    RefCell::new(<Single<ObjcSelectorParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ObjcSelectorParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcSelectorParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ObjcSelectorParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ObjcSelectorParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ObjcSelectorParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<OptimizeParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<OptimizeParser>> {
                                    RefCell::new(<Single<OptimizeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<OptimizeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<OptimizeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<OptimizeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<OptimizeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<OptimizeParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<PatchableFunctionEntryParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<PatchableFunctionEntryParser>> {
                                    RefCell::new(<Single<PatchableFunctionEntryParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<PatchableFunctionEntryParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatchableFunctionEntryParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatchableFunctionEntryParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<PatchableFunctionEntryParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<PatchableFunctionEntryParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<PathAttributeParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<PathAttributeParser>> {
                                    RefCell::new(<Single<PathAttributeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<PathAttributeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PathAttributeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PathAttributeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<PathAttributeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<PathAttributeParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<PatternComplexityLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<PatternComplexityLimitParser>> {
                                    RefCell::new(<Single<PatternComplexityLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<PatternComplexityLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatternComplexityLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<PatternComplexityLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<PatternComplexityLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<PatternComplexityLimitParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ProcMacroDeriveParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ProcMacroDeriveParser>> {
                                    RefCell::new(<Single<ProcMacroDeriveParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ProcMacroDeriveParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ProcMacroDeriveParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ProcMacroDeriveParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ProcMacroDeriveParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ProcMacroDeriveParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RecursionLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RecursionLimitParser>> {
                                    RefCell::new(<Single<RecursionLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RecursionLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RecursionLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RecursionLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RecursionLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RecursionLimitParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ReexportTestHarnessMainParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ReexportTestHarnessMainParser>> {
                                    RefCell::new(<Single<ReexportTestHarnessMainParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ReexportTestHarnessMainParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ReexportTestHarnessMainParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ReexportTestHarnessMainParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ReexportTestHarnessMainParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ReexportTestHarnessMainParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcAbiParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcAbiParser>> {
                                    RefCell::new(<Single<RustcAbiParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcAbiParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAbiParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAbiParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcAbiParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcAbiParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcAllocatorZeroedVariantParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcAllocatorZeroedVariantParser>> {
                                    RefCell::new(<Single<RustcAllocatorZeroedVariantParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcAllocatorZeroedVariantParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAllocatorZeroedVariantParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcAllocatorZeroedVariantParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcAllocatorZeroedVariantParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcAllocatorZeroedVariantParser>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcBuiltinMacroParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcBuiltinMacroParser>> {
                                    RefCell::new(<Single<RustcBuiltinMacroParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcBuiltinMacroParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcBuiltinMacroParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcBuiltinMacroParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcBuiltinMacroParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcBuiltinMacroParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcForceInlineParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcForceInlineParser>> {
                                    RefCell::new(<Single<RustcForceInlineParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcForceInlineParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcForceInlineParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcForceInlineParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcForceInlineParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcForceInlineParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcIfThisChangedParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcIfThisChangedParser>> {
                                    RefCell::new(<Single<RustcIfThisChangedParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcIfThisChangedParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcIfThisChangedParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcIfThisChangedParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcIfThisChangedParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcIfThisChangedParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLayoutScalarValidRangeEndParser>> {
                                    RefCell::new(<Single<RustcLayoutScalarValidRangeEndParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeEndParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLayoutScalarValidRangeEndParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLayoutScalarValidRangeEndParser>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLayoutScalarValidRangeStartParser>> {
                                    RefCell::new(<Single<RustcLayoutScalarValidRangeStartParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLayoutScalarValidRangeStartParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLayoutScalarValidRangeStartParser>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLayoutScalarValidRangeStartParser>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLegacyConstGenericsParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLegacyConstGenericsParser>> {
                                    RefCell::new(<Single<RustcLegacyConstGenericsParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLegacyConstGenericsParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLegacyConstGenericsParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLegacyConstGenericsParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLegacyConstGenericsParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLegacyConstGenericsParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcLintOptDenyFieldAccessParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcLintOptDenyFieldAccessParser>> {
                                    RefCell::new(<Single<RustcLintOptDenyFieldAccessParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcLintOptDenyFieldAccessParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLintOptDenyFieldAccessParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcLintOptDenyFieldAccessParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcLintOptDenyFieldAccessParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcLintOptDenyFieldAccessParser>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcMustImplementOneOfParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcMustImplementOneOfParser>> {
                                    RefCell::new(<Single<RustcMustImplementOneOfParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcMustImplementOneOfParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcMustImplementOneOfParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcMustImplementOneOfParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcMustImplementOneOfParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcMustImplementOneOfParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcObjectLifetimeDefaultParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcObjectLifetimeDefaultParser>> {
                                    RefCell::new(<Single<RustcObjectLifetimeDefaultParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcObjectLifetimeDefaultParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcObjectLifetimeDefaultParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcObjectLifetimeDefaultParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcObjectLifetimeDefaultParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcObjectLifetimeDefaultParser>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcScalableVectorParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcScalableVectorParser>> {
                                    RefCell::new(<Single<RustcScalableVectorParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcScalableVectorParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcScalableVectorParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcScalableVectorParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcScalableVectorParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcScalableVectorParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>> {
                                    RefCell::new(<Single<RustcSimdMonomorphizeLaneLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<RustcSimdMonomorphizeLaneLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<RustcSimdMonomorphizeLaneLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<RustcSimdMonomorphizeLaneLimitParser>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<SanitizeParser>>> =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<SanitizeParser>> {
                                    RefCell::new(<Single<SanitizeParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<SanitizeParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SanitizeParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SanitizeParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<SanitizeParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<SanitizeParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<ShouldPanicParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<ShouldPanicParser>> {
                                    RefCell::new(<Single<ShouldPanicParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<ShouldPanicParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ShouldPanicParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<ShouldPanicParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<ShouldPanicParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<ShouldPanicParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<SkipDuringMethodDispatchParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<SkipDuringMethodDispatchParser>> {
                                    RefCell::new(<Single<SkipDuringMethodDispatchParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<SkipDuringMethodDispatchParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SkipDuringMethodDispatchParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<SkipDuringMethodDispatchParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<SkipDuringMethodDispatchParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<SkipDuringMethodDispatchParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<TransparencyParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<TransparencyParser>> {
                                    RefCell::new(<Single<TransparencyParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<TransparencyParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TransparencyParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TransparencyParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<TransparencyParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<TransparencyParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<TypeLengthLimitParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<TypeLengthLimitParser>> {
                                    RefCell::new(<Single<TypeLengthLimitParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<TypeLengthLimitParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TypeLengthLimitParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<TypeLengthLimitParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<TypeLengthLimitParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<TypeLengthLimitParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WindowsSubsystemParser>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WindowsSubsystemParser>> {
                                    RefCell::new(<Single<WindowsSubsystemParser>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WindowsSubsystemParser>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WindowsSubsystemParser>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WindowsSubsystemParser>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WindowsSubsystemParser>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WindowsSubsystemParser> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AllowIncoherentImplParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowIncoherentImplParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AllowIncoherentImplParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AllowIncoherentImplParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AllowInternalUnsafeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AllowInternalUnsafeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AllowInternalUnsafeParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AllowInternalUnsafeParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AsPtrParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<AsPtrParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AsPtrParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AsPtrParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AsPtrParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AsPtrParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AsPtrParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AsPtrParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>> {
                                    RefCell::new(<Single<WithoutArgs<AutomaticallyDerivedParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<AutomaticallyDerivedParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<AutomaticallyDerivedParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<AutomaticallyDerivedParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<CoinductiveParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<CoinductiveParser>>> {
                                    RefCell::new(<Single<WithoutArgs<CoinductiveParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<CoinductiveParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoinductiveParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoinductiveParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<CoinductiveParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<CoinductiveParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ColdParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ColdParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ColdParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ColdParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ColdParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ColdParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ColdParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ColdParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<CompilerBuiltinsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CompilerBuiltinsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<CompilerBuiltinsParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<CompilerBuiltinsParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ConstContinueParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ConstContinueParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ConstContinueParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ConstContinueParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstContinueParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstContinueParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ConstContinueParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ConstContinueParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ConstStabilityIndirectParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ConstStabilityIndirectParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ConstStabilityIndirectParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ConstStabilityIndirectParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<CoroutineParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<CoroutineParser>>> {
                                    RefCell::new(<Single<WithoutArgs<CoroutineParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<CoroutineParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoroutineParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<CoroutineParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<CoroutineParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<CoroutineParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<DenyExplicitImplParser>>> {
                                    RefCell::new(<Single<WithoutArgs<DenyExplicitImplParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DenyExplicitImplParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<DenyExplicitImplParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<DenyExplicitImplParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>> {
                                    RefCell::new(<Single<WithoutArgs<DynIncompatibleTraitParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<DynIncompatibleTraitParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<DynIncompatibleTraitParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<DynIncompatibleTraitParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<EiiForeignItemParser>>> {
                                    RefCell::new(<Single<WithoutArgs<EiiForeignItemParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<EiiForeignItemParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<EiiForeignItemParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<EiiForeignItemParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ExportStableParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ExportStableParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ExportStableParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ExportStableParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ExportStableParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ExportStableParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ExportStableParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ExportStableParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<FfiConstParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<FfiConstParser>>> {
                                    RefCell::new(<Single<WithoutArgs<FfiConstParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<FfiConstParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiConstParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiConstParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<FfiConstParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<FfiConstParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<FfiPureParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<FfiPureParser>>> {
                                    RefCell::new(<Single<WithoutArgs<FfiPureParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<FfiPureParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiPureParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FfiPureParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<FfiPureParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<FfiPureParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<FundamentalParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<FundamentalParser>>> {
                                    RefCell::new(<Single<WithoutArgs<FundamentalParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<FundamentalParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FundamentalParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<FundamentalParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<FundamentalParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<FundamentalParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<LoopMatchParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<LoopMatchParser>>> {
                                    RefCell::new(<Single<WithoutArgs<LoopMatchParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<LoopMatchParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<LoopMatchParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<LoopMatchParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<LoopMatchParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<LoopMatchParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<MacroEscapeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<MacroEscapeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<MacroEscapeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<MacroEscapeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MacroEscapeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MacroEscapeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<MacroEscapeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<MacroEscapeParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<MarkerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<MarkerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<MarkerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<MarkerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MarkerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MarkerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<MarkerParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<MarkerParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<MayDangleParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<MayDangleParser>>> {
                                    RefCell::new(<Single<WithoutArgs<MayDangleParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<MayDangleParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MayDangleParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<MayDangleParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<MayDangleParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<MayDangleParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NeedsAllocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NeedsAllocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsAllocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NeedsAllocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NeedsAllocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NeedsPanicRuntimeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NeedsPanicRuntimeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NeedsPanicRuntimeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NeedsPanicRuntimeParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoBuiltinsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoBuiltinsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoBuiltinsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoBuiltinsParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoBuiltinsParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoCoreParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoCoreParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoCoreParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoCoreParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoCoreParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoCoreParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoCoreParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoCoreParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoImplicitPreludeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoImplicitPreludeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoImplicitPreludeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoImplicitPreludeParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoLinkParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoLinkParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoLinkParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoLinkParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoLinkParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoLinkParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoLinkParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoLinkParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoMainParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoMainParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoMainParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoMainParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMainParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMainParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoMainParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoMainParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoMangleParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoMangleParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoMangleParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoMangleParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMangleParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoMangleParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoMangleParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoMangleParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NoStdParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NoStdParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NoStdParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NoStdParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoStdParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NoStdParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NoStdParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NoStdParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<NonExhaustiveParser>>> {
                                    RefCell::new(<Single<WithoutArgs<NonExhaustiveParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<NonExhaustiveParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<NonExhaustiveParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<NonExhaustiveParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PanicRuntimeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PanicRuntimeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PanicRuntimeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PanicRuntimeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PanicRuntimeParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ParenSugarParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ParenSugarParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ParenSugarParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ParenSugarParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ParenSugarParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ParenSugarParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ParenSugarParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ParenSugarParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PassByValueParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PassByValueParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PassByValueParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PassByValueParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PassByValueParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PassByValueParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PassByValueParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PassByValueParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PinV2Parser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PinV2Parser>>> {
                                    RefCell::new(<Single<WithoutArgs<PinV2Parser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PinV2Parser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PinV2Parser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PinV2Parser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PinV2Parser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PinV2Parser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PointeeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PointeeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PointeeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PointeeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PointeeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PointeeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PointeeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PointeeParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ProcMacroAttributeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroAttributeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ProcMacroAttributeParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ProcMacroAttributeParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ProcMacroParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ProcMacroParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ProcMacroParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ProcMacroParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProcMacroParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ProcMacroParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ProcMacroParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ProfilerRuntimeParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ProfilerRuntimeParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ProfilerRuntimeParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ProfilerRuntimeParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<PubTransparentParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<PubTransparentParser>>> {
                                    RefCell::new(<Single<WithoutArgs<PubTransparentParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<PubTransparentParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PubTransparentParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<PubTransparentParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<PubTransparentParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<PubTransparentParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcAllocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcAllocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcAllocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcAllocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcAllocatorZeroedParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcAllocatorZeroedParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcAllocatorZeroedParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcAllocatorZeroedParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcCoherenceIsCoreParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcCoherenceIsCoreParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcCoherenceIsCoreParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDeallocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDeallocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDeallocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDeallocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDeallocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpDefParentsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpDefParentsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpDefParentsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpDefParentsParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpItemBoundsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpItemBoundsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpItemBoundsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpItemBoundsParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpPredicatesParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpPredicatesParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpPredicatesParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpPredicatesParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpUserArgsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpUserArgsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpUserArgsParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpUserArgsParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcDumpVtableParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcDumpVtableParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcDumpVtableParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcDumpVtableParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcDumpVtableParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcEffectiveVisibilityParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcEffectiveVisibilityParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcEffectiveVisibilityParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcLintOptTyParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcLintOptTyParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintOptTyParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcLintOptTyParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcLintOptTyParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintQueryInstabilityParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcLintQueryInstabilityParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcLintQueryInstabilityParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcMainParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcMainParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcMainParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcMainParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcMainParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcMainParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcMainParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcMainParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNoImplicitAutorefsParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNoImplicitAutorefsParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNonConstTraitMethodParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNonConstTraitMethodParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNonConstTraitMethodParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcNounwindParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcNounwindParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcNounwindParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcNounwindParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNounwindParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcNounwindParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcNounwindParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcNounwindParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcOffloadKernelParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcOffloadKernelParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcOffloadKernelParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcOffloadKernelParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcPreserveUbChecksParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcPreserveUbChecksParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcPreserveUbChecksParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcPreserveUbChecksParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcReallocatorParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcReallocatorParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcReallocatorParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcReallocatorParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcReallocatorParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcVarianceOfOpaquesParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcVarianceOfOpaquesParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<RustcVarianceParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<RustcVarianceParser>>> {
                                    RefCell::new(<Single<WithoutArgs<RustcVarianceParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<RustcVarianceParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<RustcVarianceParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<RustcVarianceParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<RustcVarianceParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<SpecializationTraitParser>>> {
                                    RefCell::new(<Single<WithoutArgs<SpecializationTraitParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<SpecializationTraitParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<SpecializationTraitParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<SpecializationTraitParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<StdInternalSymbolParser>>> {
                                    RefCell::new(<Single<WithoutArgs<StdInternalSymbolParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<StdInternalSymbolParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<StdInternalSymbolParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<StdInternalSymbolParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<ThreadLocalParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<ThreadLocalParser>>> {
                                    RefCell::new(<Single<WithoutArgs<ThreadLocalParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<ThreadLocalParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ThreadLocalParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<ThreadLocalParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<ThreadLocalParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<ThreadLocalParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<TrackCallerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<TrackCallerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<TrackCallerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<TrackCallerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TrackCallerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TrackCallerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<TrackCallerParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<TrackCallerParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<TypeConstParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    -> RefCell<Single<WithoutArgs<TypeConstParser>>> {
                                    RefCell::new(<Single<WithoutArgs<TypeConstParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<TypeConstParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TypeConstParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<TypeConstParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<TypeConstParser>>>::ATTRIBUTES {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<TypeConstParser>> as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    {
                        const STATE_OBJECT:
                            ::std::thread::LocalKey<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>>
                            =
                            {
                                #[inline]
                                fn __rust_std_internal_init_fn()
                                    ->
                                        RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>> {
                                    RefCell::new(<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>::default())
                                }
                                unsafe {
                                    ::std::thread::LocalKey::new(const {
                                                if ::std::mem::needs_drop::<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>>()
                                                    {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>,
                                                                ()> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                } else {
                                                    |__rust_std_internal_init|
                                                        {
                                                            #[thread_local]
                                                            static __RUST_STD_INTERNAL_VAL:
                                                                ::std::thread::local_impl::LazyStorage<RefCell<Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>,
                                                                !> =
                                                                ::std::thread::local_impl::LazyStorage::new();
                                                            __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                                                __rust_std_internal_init_fn)
                                                        }
                                                }
                                            })
                                }
                            };
                        for (path, template, accept_fn) in
                            <Single<WithoutArgs<UnsafeSpecializationMarkerParser>>>::ATTRIBUTES
                            {
                            accepters.entry(*path).or_default().push(GroupTypeInnerAccept {
                                    template: *template,
                                    accept_fn: Box::new(|cx, args|
                                            {
                                                STATE_OBJECT.with_borrow_mut(|s| { accept_fn(s, cx, args) })
                                            }),
                                    allowed_targets: <Single<WithoutArgs<UnsafeSpecializationMarkerParser>>
                                        as
                                        crate::attributes::AttributeParser<Late>>::ALLOWED_TARGETS,
                                    finalizer: Box::new(|cx|
                                            { let state = STATE_OBJECT.take(); state.finalize(cx) }),
                                });
                        }
                    }
                    GroupTypeInner { accepters }
                });
}attribute_parsers!(
134    pub(crate) static ATTRIBUTE_PARSERS = [
135        // tidy-alphabetical-start
136        AlignParser,
137        AlignStaticParser,
138        BodyStabilityParser,
139        ConfusablesParser,
140        ConstStabilityParser,
141        DocParser,
142        MacroUseParser,
143        NakedParser,
144        StabilityParser,
145        UsedParser,
146        // tidy-alphabetical-end
147
148        // tidy-alphabetical-start
149        Combine<AllowConstFnUnstableParser>,
150        Combine<AllowInternalUnstableParser>,
151        Combine<CrateTypeParser>,
152        Combine<DebuggerViualizerParser>,
153        Combine<ForceTargetFeatureParser>,
154        Combine<LinkParser>,
155        Combine<ReprParser>,
156        Combine<RustcCleanParser>,
157        Combine<RustcLayoutParser>,
158        Combine<RustcMirParser>,
159        Combine<RustcThenThisWouldNeedParser>,
160        Combine<TargetFeatureParser>,
161        Combine<UnstableFeatureBoundParser>,
162        // tidy-alphabetical-end
163
164        // tidy-alphabetical-start
165        Single<CfiEncodingParser>,
166        Single<CollapseDebugInfoParser>,
167        Single<CoverageParser>,
168        Single<CrateNameParser>,
169        Single<CustomMirParser>,
170        Single<DeprecationParser>,
171        Single<DoNotRecommendParser>,
172        Single<DummyParser>,
173        Single<ExportNameParser>,
174        Single<IgnoreParser>,
175        Single<InlineParser>,
176        Single<InstructionSetParser>,
177        Single<LinkNameParser>,
178        Single<LinkOrdinalParser>,
179        Single<LinkSectionParser>,
180        Single<LinkageParser>,
181        Single<MacroExportParser>,
182        Single<MoveSizeLimitParser>,
183        Single<MustNotSuspendParser>,
184        Single<MustUseParser>,
185        Single<ObjcClassParser>,
186        Single<ObjcSelectorParser>,
187        Single<OptimizeParser>,
188        Single<PatchableFunctionEntryParser>,
189        Single<PathAttributeParser>,
190        Single<PatternComplexityLimitParser>,
191        Single<ProcMacroDeriveParser>,
192        Single<RecursionLimitParser>,
193        Single<ReexportTestHarnessMainParser>,
194        Single<RustcAbiParser>,
195        Single<RustcAllocatorZeroedVariantParser>,
196        Single<RustcBuiltinMacroParser>,
197        Single<RustcForceInlineParser>,
198        Single<RustcIfThisChangedParser>,
199        Single<RustcLayoutScalarValidRangeEndParser>,
200        Single<RustcLayoutScalarValidRangeStartParser>,
201        Single<RustcLegacyConstGenericsParser>,
202        Single<RustcLintOptDenyFieldAccessParser>,
203        Single<RustcMustImplementOneOfParser>,
204        Single<RustcObjectLifetimeDefaultParser>,
205        Single<RustcScalableVectorParser>,
206        Single<RustcSimdMonomorphizeLaneLimitParser>,
207        Single<SanitizeParser>,
208        Single<ShouldPanicParser>,
209        Single<SkipDuringMethodDispatchParser>,
210        Single<TransparencyParser>,
211        Single<TypeLengthLimitParser>,
212        Single<WindowsSubsystemParser>,
213        Single<WithoutArgs<AllowIncoherentImplParser>>,
214        Single<WithoutArgs<AllowInternalUnsafeParser>>,
215        Single<WithoutArgs<AsPtrParser>>,
216        Single<WithoutArgs<AutomaticallyDerivedParser>>,
217        Single<WithoutArgs<CoinductiveParser>>,
218        Single<WithoutArgs<ColdParser>>,
219        Single<WithoutArgs<CompilerBuiltinsParser>>,
220        Single<WithoutArgs<ConstContinueParser>>,
221        Single<WithoutArgs<ConstStabilityIndirectParser>>,
222        Single<WithoutArgs<CoroutineParser>>,
223        Single<WithoutArgs<DenyExplicitImplParser>>,
224        Single<WithoutArgs<DynIncompatibleTraitParser>>,
225        Single<WithoutArgs<EiiForeignItemParser>>,
226        Single<WithoutArgs<ExportStableParser>>,
227        Single<WithoutArgs<FfiConstParser>>,
228        Single<WithoutArgs<FfiPureParser>>,
229        Single<WithoutArgs<FundamentalParser>>,
230        Single<WithoutArgs<LoopMatchParser>>,
231        Single<WithoutArgs<MacroEscapeParser>>,
232        Single<WithoutArgs<MarkerParser>>,
233        Single<WithoutArgs<MayDangleParser>>,
234        Single<WithoutArgs<NeedsAllocatorParser>>,
235        Single<WithoutArgs<NeedsPanicRuntimeParser>>,
236        Single<WithoutArgs<NoBuiltinsParser>>,
237        Single<WithoutArgs<NoCoreParser>>,
238        Single<WithoutArgs<NoImplicitPreludeParser>>,
239        Single<WithoutArgs<NoLinkParser>>,
240        Single<WithoutArgs<NoMainParser>>,
241        Single<WithoutArgs<NoMangleParser>>,
242        Single<WithoutArgs<NoStdParser>>,
243        Single<WithoutArgs<NonExhaustiveParser>>,
244        Single<WithoutArgs<PanicRuntimeParser>>,
245        Single<WithoutArgs<ParenSugarParser>>,
246        Single<WithoutArgs<PassByValueParser>>,
247        Single<WithoutArgs<PinV2Parser>>,
248        Single<WithoutArgs<PointeeParser>>,
249        Single<WithoutArgs<ProcMacroAttributeParser>>,
250        Single<WithoutArgs<ProcMacroParser>>,
251        Single<WithoutArgs<ProfilerRuntimeParser>>,
252        Single<WithoutArgs<PubTransparentParser>>,
253        Single<WithoutArgs<RustcAllocatorParser>>,
254        Single<WithoutArgs<RustcAllocatorZeroedParser>>,
255        Single<WithoutArgs<RustcCoherenceIsCoreParser>>,
256        Single<WithoutArgs<RustcDeallocatorParser>>,
257        Single<WithoutArgs<RustcDumpDefParentsParser>>,
258        Single<WithoutArgs<RustcDumpItemBoundsParser>>,
259        Single<WithoutArgs<RustcDumpPredicatesParser>>,
260        Single<WithoutArgs<RustcDumpUserArgsParser>>,
261        Single<WithoutArgs<RustcDumpVtableParser>>,
262        Single<WithoutArgs<RustcEffectiveVisibilityParser>>,
263        Single<WithoutArgs<RustcHasIncoherentInherentImplsParser>>,
264        Single<WithoutArgs<RustcHiddenTypeOfOpaquesParser>>,
265        Single<WithoutArgs<RustcLintOptTyParser>>,
266        Single<WithoutArgs<RustcLintQueryInstabilityParser>>,
267        Single<WithoutArgs<RustcLintUntrackedQueryInformationParser>>,
268        Single<WithoutArgs<RustcMainParser>>,
269        Single<WithoutArgs<RustcNeverReturnsNullPointerParser>>,
270        Single<WithoutArgs<RustcNoImplicitAutorefsParser>>,
271        Single<WithoutArgs<RustcNonConstTraitMethodParser>>,
272        Single<WithoutArgs<RustcNounwindParser>>,
273        Single<WithoutArgs<RustcOffloadKernelParser>>,
274        Single<WithoutArgs<RustcPassIndirectlyInNonRusticAbisParser>>,
275        Single<WithoutArgs<RustcPreserveUbChecksParser>>,
276        Single<WithoutArgs<RustcReallocatorParser>>,
277        Single<WithoutArgs<RustcShouldNotBeCalledOnConstItems>>,
278        Single<WithoutArgs<RustcVarianceOfOpaquesParser>>,
279        Single<WithoutArgs<RustcVarianceParser>>,
280        Single<WithoutArgs<SpecializationTraitParser>>,
281        Single<WithoutArgs<StdInternalSymbolParser>>,
282        Single<WithoutArgs<ThreadLocalParser>>,
283        Single<WithoutArgs<TrackCallerParser>>,
284        Single<WithoutArgs<TypeConstParser>>,
285        Single<WithoutArgs<UnsafeSpecializationMarkerParser>>,
286        // tidy-alphabetical-end
287    ];
288);
289
290mod private {
291    pub trait Sealed {}
292    impl Sealed for super::Early {}
293    impl Sealed for super::Late {}
294}
295
296// allow because it's a sealed trait
297#[allow(private_interfaces)]
298pub trait Stage: Sized + 'static + Sealed {
299    type Id: Copy;
300
301    fn parsers() -> &'static GroupType<Self>;
302
303    fn emit_err<'sess>(
304        &self,
305        sess: &'sess Session,
306        diag: impl for<'x> Diagnostic<'x>,
307    ) -> ErrorGuaranteed;
308
309    fn should_emit(&self) -> ShouldEmit;
310}
311
312// allow because it's a sealed trait
313#[allow(private_interfaces)]
314impl Stage for Early {
315    type Id = NodeId;
316
317    fn parsers() -> &'static GroupType<Self> {
318        &early::ATTRIBUTE_PARSERS
319    }
320    fn emit_err<'sess>(
321        &self,
322        sess: &'sess Session,
323        diag: impl for<'x> Diagnostic<'x>,
324    ) -> ErrorGuaranteed {
325        self.should_emit().emit_err(sess.dcx().create_err(diag))
326    }
327
328    fn should_emit(&self) -> ShouldEmit {
329        self.emit_errors
330    }
331}
332
333// allow because it's a sealed trait
334#[allow(private_interfaces)]
335impl Stage for Late {
336    type Id = HirId;
337
338    fn parsers() -> &'static GroupType<Self> {
339        &late::ATTRIBUTE_PARSERS
340    }
341    fn emit_err<'sess>(
342        &self,
343        tcx: &'sess Session,
344        diag: impl for<'x> Diagnostic<'x>,
345    ) -> ErrorGuaranteed {
346        tcx.dcx().emit_err(diag)
347    }
348
349    fn should_emit(&self) -> ShouldEmit {
350        ShouldEmit::ErrorsAndLints { recovery: Recovery::Allowed }
351    }
352}
353
354/// used when parsing attributes for miscellaneous things *before* ast lowering
355pub struct Early {
356    /// Whether to emit errors or delay them as a bug
357    /// For most attributes, the attribute will be parsed again in the `Late` stage and in this case the errors should be delayed
358    /// But for some, such as `cfg`, the attribute will be removed before the `Late` stage so errors must be emitted
359    pub emit_errors: ShouldEmit,
360}
361/// used when parsing attributes during ast lowering
362pub struct Late;
363
364/// Context given to every attribute parser when accepting
365///
366/// Gives [`AttributeParser`]s enough information to create errors, for example.
367pub struct AcceptContext<'f, 'sess, S: Stage> {
368    pub(crate) shared: SharedContext<'f, 'sess, S>,
369
370    /// The outer span of the attribute currently being parsed
371    /// #[attribute(...)]
372    /// ^^^^^^^^^^^^^^^^^ outer span
373    /// For attributes in `cfg_attr`, the outer span and inner spans are equal.
374    pub(crate) attr_span: Span,
375    /// The inner span of the attribute currently being parsed
376    /// #[attribute(...)]
377    ///   ^^^^^^^^^^^^^^  inner span
378    pub(crate) inner_span: Span,
379
380    /// Whether it is an inner or outer attribute
381    pub(crate) attr_style: AttrStyle,
382
383    /// A description of the thing we are parsing using this attribute parser
384    /// We are not only using these parsers for attributes, but also for macros such as the `cfg!()` macro.
385    pub(crate) parsed_description: ParsedDescription,
386
387    /// The expected structure of the attribute.
388    ///
389    /// Used in reporting errors to give a hint to users what the attribute *should* look like.
390    pub(crate) template: &'f AttributeTemplate,
391
392    /// The name of the attribute we're currently accepting.
393    pub(crate) attr_path: AttrPath,
394}
395
396impl<'f, 'sess: 'f, S: Stage> SharedContext<'f, 'sess, S> {
397    pub(crate) fn emit_err(&self, diag: impl for<'x> Diagnostic<'x>) -> ErrorGuaranteed {
398        self.stage.emit_err(&self.sess, diag)
399    }
400
401    /// Emit a lint. This method is somewhat special, since lints emitted during attribute parsing
402    /// must be delayed until after HIR is built. This method will take care of the details of
403    /// that.
404    pub(crate) fn emit_lint(&mut self, lint: &'static Lint, kind: AttributeLintKind, span: Span) {
405        if !#[allow(non_exhaustive_omitted_patterns)] match self.stage.should_emit() {
    ShouldEmit::ErrorsAndLints { .. } | ShouldEmit::EarlyFatal {
        also_emit_lints: true } => true,
    _ => false,
}matches!(
406            self.stage.should_emit(),
407            ShouldEmit::ErrorsAndLints { .. } | ShouldEmit::EarlyFatal { also_emit_lints: true }
408        ) {
409            return;
410        }
411        (self.emit_lint)(LintId::of(lint), span, kind);
412    }
413
414    pub(crate) fn warn_unused_duplicate(&mut self, used_span: Span, unused_span: Span) {
415        self.emit_lint(
416            rustc_session::lint::builtin::UNUSED_ATTRIBUTES,
417            AttributeLintKind::UnusedDuplicate {
418                this: unused_span,
419                other: used_span,
420                warning: false,
421            },
422            unused_span,
423        )
424    }
425
426    pub(crate) fn warn_unused_duplicate_future_error(
427        &mut self,
428        used_span: Span,
429        unused_span: Span,
430    ) {
431        self.emit_lint(
432            rustc_session::lint::builtin::UNUSED_ATTRIBUTES,
433            AttributeLintKind::UnusedDuplicate {
434                this: unused_span,
435                other: used_span,
436                warning: true,
437            },
438            unused_span,
439        )
440    }
441}
442
443impl<'f, 'sess: 'f, S: Stage> AcceptContext<'f, 'sess, S> {
444    fn emit_parse_error(
445        &self,
446        span: Span,
447        reason: AttributeParseErrorReason<'_>,
448    ) -> ErrorGuaranteed {
449        self.emit_err(AttributeParseError {
450            span,
451            attr_span: self.attr_span,
452            template: self.template.clone(),
453            path: self.attr_path.clone(),
454            description: self.parsed_description,
455            reason,
456            suggestions: self.suggestions(),
457        })
458    }
459
460    /// error that a string literal was expected.
461    /// You can optionally give the literal you did find (which you found not to be a string literal)
462    /// which can make better errors. For example, if the literal was a byte string it will suggest
463    /// removing the `b` prefix.
464    pub(crate) fn expected_string_literal(
465        &self,
466        span: Span,
467        actual_literal: Option<&MetaItemLit>,
468    ) -> ErrorGuaranteed {
469        self.emit_parse_error(
470            span,
471            AttributeParseErrorReason::ExpectedStringLiteral {
472                byte_string: actual_literal.and_then(|i| {
473                    i.kind.is_bytestr().then(|| self.sess().source_map().start_point(i.span))
474                }),
475            },
476        )
477    }
478
479    /// Error that a filename string literal was expected.
480    pub(crate) fn expected_filename_literal(&self, span: Span) {
481        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedFilenameLiteral);
482    }
483
484    pub(crate) fn expected_integer_literal(&self, span: Span) -> ErrorGuaranteed {
485        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedIntegerLiteral)
486    }
487
488    pub(crate) fn expected_integer_literal_in_range(
489        &self,
490        span: Span,
491        lower_bound: isize,
492        upper_bound: isize,
493    ) -> ErrorGuaranteed {
494        self.emit_parse_error(
495            span,
496            AttributeParseErrorReason::ExpectedIntegerLiteralInRange { lower_bound, upper_bound },
497        )
498    }
499
500    pub(crate) fn expected_list(&self, span: Span, args: &ArgParser) -> ErrorGuaranteed {
501        let span = match args {
502            ArgParser::NoArgs => span,
503            ArgParser::List(list) => list.span,
504            ArgParser::NameValue(nv) => nv.args_span(),
505        };
506        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedList)
507    }
508
509    pub(crate) fn expected_list_with_num_args_or_more(
510        &self,
511        args: usize,
512        span: Span,
513    ) -> ErrorGuaranteed {
514        self.emit_parse_error(
515            span,
516            AttributeParseErrorReason::ExpectedListWithNumArgsOrMore { args },
517        )
518    }
519
520    pub(crate) fn expected_list_or_no_args(&self, span: Span) -> ErrorGuaranteed {
521        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedListOrNoArgs)
522    }
523
524    pub(crate) fn expected_nv_or_no_args(&self, span: Span) -> ErrorGuaranteed {
525        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedNameValueOrNoArgs)
526    }
527
528    pub(crate) fn expected_non_empty_string_literal(&self, span: Span) -> ErrorGuaranteed {
529        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedNonEmptyStringLiteral)
530    }
531
532    pub(crate) fn expected_no_args(&self, span: Span) -> ErrorGuaranteed {
533        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedNoArgs)
534    }
535
536    /// emit an error that a `name` was expected here
537    pub(crate) fn expected_identifier(&self, span: Span) -> ErrorGuaranteed {
538        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedIdentifier)
539    }
540
541    /// emit an error that a `name = value` pair was expected at this span. The symbol can be given for
542    /// a nicer error message talking about the specific name that was found lacking a value.
543    pub(crate) fn expected_name_value(&self, span: Span, name: Option<Symbol>) -> ErrorGuaranteed {
544        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedNameValue(name))
545    }
546
547    /// emit an error that a `name = value` pair was found where that name was already seen.
548    pub(crate) fn duplicate_key(&self, span: Span, key: Symbol) -> ErrorGuaranteed {
549        self.emit_parse_error(span, AttributeParseErrorReason::DuplicateKey(key))
550    }
551
552    /// an error that should be emitted when a [`MetaItemOrLitParser`](crate::parser::MetaItemOrLitParser)
553    /// was expected *not* to be a literal, but instead a meta item.
554    pub(crate) fn unexpected_literal(&self, span: Span) -> ErrorGuaranteed {
555        self.emit_parse_error(span, AttributeParseErrorReason::UnexpectedLiteral)
556    }
557
558    pub(crate) fn expected_single_argument(&self, span: Span) -> ErrorGuaranteed {
559        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedSingleArgument)
560    }
561
562    pub(crate) fn expected_at_least_one_argument(&self, span: Span) -> ErrorGuaranteed {
563        self.emit_parse_error(span, AttributeParseErrorReason::ExpectedAtLeastOneArgument)
564    }
565
566    /// produces an error along the lines of `expected one of [foo, meow]`
567    pub(crate) fn expected_specific_argument(
568        &self,
569        span: Span,
570        possibilities: &[Symbol],
571    ) -> ErrorGuaranteed {
572        self.emit_parse_error(
573            span,
574            AttributeParseErrorReason::ExpectedSpecificArgument {
575                possibilities,
576                strings: false,
577                list: false,
578            },
579        )
580    }
581
582    /// produces an error along the lines of `expected one of [foo, meow] as an argument`.
583    /// i.e. slightly different wording to [`expected_specific_argument`](Self::expected_specific_argument).
584    pub(crate) fn expected_specific_argument_and_list(
585        &self,
586        span: Span,
587        possibilities: &[Symbol],
588    ) -> ErrorGuaranteed {
589        self.emit_parse_error(
590            span,
591            AttributeParseErrorReason::ExpectedSpecificArgument {
592                possibilities,
593                strings: false,
594                list: true,
595            },
596        )
597    }
598
599    /// produces an error along the lines of `expected one of ["foo", "meow"]`
600    pub(crate) fn expected_specific_argument_strings(
601        &self,
602        span: Span,
603        possibilities: &[Symbol],
604    ) -> ErrorGuaranteed {
605        self.emit_parse_error(
606            span,
607            AttributeParseErrorReason::ExpectedSpecificArgument {
608                possibilities,
609                strings: true,
610                list: false,
611            },
612        )
613    }
614
615    pub(crate) fn warn_empty_attribute(&mut self, span: Span) {
616        let attr_path = self.attr_path.clone().to_string();
617        let valid_without_list = self.template.word;
618        self.emit_lint(
619            rustc_session::lint::builtin::UNUSED_ATTRIBUTES,
620            AttributeLintKind::EmptyAttribute { first_span: span, attr_path, valid_without_list },
621            span,
622        );
623    }
624
625    pub(crate) fn warn_ill_formed_attribute_input(&mut self, lint: &'static Lint) {
626        let suggestions = self.suggestions();
627        let span = self.attr_span;
628        self.emit_lint(
629            lint,
630            AttributeLintKind::IllFormedAttributeInput { suggestions, docs: None },
631            span,
632        );
633    }
634
635    pub(crate) fn suggestions(&self) -> Vec<String> {
636        let style = match self.parsed_description {
637            // If the outer and inner spans are equal, we are parsing an embedded attribute
638            ParsedDescription::Attribute if self.attr_span == self.inner_span => {
639                AttrSuggestionStyle::EmbeddedAttribute
640            }
641            ParsedDescription::Attribute => AttrSuggestionStyle::Attribute(self.attr_style),
642            ParsedDescription::Macro => AttrSuggestionStyle::Macro,
643        };
644
645        self.template.suggestions(style, &self.attr_path)
646    }
647}
648
649impl<'f, 'sess, S: Stage> Deref for AcceptContext<'f, 'sess, S> {
650    type Target = SharedContext<'f, 'sess, S>;
651
652    fn deref(&self) -> &Self::Target {
653        &self.shared
654    }
655}
656
657impl<'f, 'sess, S: Stage> DerefMut for AcceptContext<'f, 'sess, S> {
658    fn deref_mut(&mut self) -> &mut Self::Target {
659        &mut self.shared
660    }
661}
662
663/// Context given to every attribute parser during finalization.
664///
665/// Gives [`AttributeParser`](crate::attributes::AttributeParser)s enough information to create
666/// errors, for example.
667pub struct SharedContext<'p, 'sess, S: Stage> {
668    /// The parse context, gives access to the session and the
669    /// diagnostics context.
670    pub(crate) cx: &'p mut AttributeParser<'sess, S>,
671    /// The span of the syntactical component this attribute was applied to
672    pub(crate) target_span: Span,
673    pub(crate) target: rustc_hir::Target,
674
675    /// The second argument of the closure is a [`NodeId`] if `S` is `Early` and a [`HirId`] if `S`
676    /// is `Late` and is the ID of the syntactical component this attribute was applied to.
677    pub(crate) emit_lint: &'p mut dyn FnMut(LintId, Span, AttributeLintKind),
678}
679
680/// Context given to every attribute parser during finalization.
681///
682/// Gives [`AttributeParser`](crate::attributes::AttributeParser)s enough information to create
683/// errors, for example.
684pub(crate) struct FinalizeContext<'p, 'sess, S: Stage> {
685    pub(crate) shared: SharedContext<'p, 'sess, S>,
686
687    /// A list of all attribute on this syntax node.
688    ///
689    /// Useful for compatibility checks with other attributes in [`finalize`](crate::attributes::AttributeParser::finalize)
690    ///
691    /// Usually, you should use normal attribute parsing logic instead,
692    /// especially when making a *denylist* of other attributes.
693    pub(crate) all_attrs: &'p [RefPathParser<'p>],
694}
695
696impl<'p, 'sess: 'p, S: Stage> Deref for FinalizeContext<'p, 'sess, S> {
697    type Target = SharedContext<'p, 'sess, S>;
698
699    fn deref(&self) -> &Self::Target {
700        &self.shared
701    }
702}
703
704impl<'p, 'sess: 'p, S: Stage> DerefMut for FinalizeContext<'p, 'sess, S> {
705    fn deref_mut(&mut self) -> &mut Self::Target {
706        &mut self.shared
707    }
708}
709
710impl<'p, 'sess: 'p, S: Stage> Deref for SharedContext<'p, 'sess, S> {
711    type Target = AttributeParser<'sess, S>;
712
713    fn deref(&self) -> &Self::Target {
714        self.cx
715    }
716}
717
718impl<'p, 'sess: 'p, S: Stage> DerefMut for SharedContext<'p, 'sess, S> {
719    fn deref_mut(&mut self) -> &mut Self::Target {
720        self.cx
721    }
722}
723
724#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for OmitDoc {
    #[inline]
    fn eq(&self, other: &OmitDoc) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::clone::Clone for OmitDoc {
    #[inline]
    fn clone(&self) -> OmitDoc { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for OmitDoc { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for OmitDoc {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                OmitDoc::Lower => "Lower",
                OmitDoc::Skip => "Skip",
            })
    }
}Debug)]
725pub enum OmitDoc {
726    Lower,
727    Skip,
728}
729
730#[derive(#[automatically_derived]
impl ::core::marker::Copy for ShouldEmit { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ShouldEmit {
    #[inline]
    fn clone(&self) -> ShouldEmit {
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Recovery>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ShouldEmit {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ShouldEmit::EarlyFatal { also_emit_lints: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "EarlyFatal", "also_emit_lints", &__self_0),
            ShouldEmit::ErrorsAndLints { recovery: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "ErrorsAndLints", "recovery", &__self_0),
            ShouldEmit::Nothing =>
                ::core::fmt::Formatter::write_str(f, "Nothing"),
        }
    }
}Debug)]
731pub enum ShouldEmit {
732    /// The operations will emit errors, and lints, and errors are fatal.
733    ///
734    /// Only relevant when early parsing, in late parsing equivalent to `ErrorsAndLints`.
735    /// Late parsing is never fatal, and instead tries to emit as many diagnostics as possible.
736    EarlyFatal { also_emit_lints: bool },
737    /// The operation will emit errors and lints.
738    /// This is usually what you need.
739    ErrorsAndLints {
740        /// Whether [`ArgParser`] will attempt to recover from errors.
741        ///
742        /// Whether it is allowed to recover from bad input (like an invalid literal). Setting
743        /// this to `Forbidden` will instead return early, and not raise errors except at the top
744        /// level (in [`ArgParser::from_attr_args`]).
745        recovery: Recovery,
746    },
747    /// The operation will *not* emit errors and lints.
748    ///
749    /// The parser can still call `delay_bug`, so you *must* ensure that this operation will also be
750    /// called with `ShouldEmit::ErrorsAndLints`.
751    Nothing,
752}
753
754impl ShouldEmit {
755    pub(crate) fn emit_err(&self, diag: Diag<'_>) -> ErrorGuaranteed {
756        match self {
757            ShouldEmit::EarlyFatal { .. } if diag.level() == Level::DelayedBug => diag.emit(),
758            ShouldEmit::EarlyFatal { .. } => diag.upgrade_to_fatal().emit(),
759            ShouldEmit::ErrorsAndLints { .. } => diag.emit(),
760            ShouldEmit::Nothing => diag.delay_as_bug(),
761        }
762    }
763}