Struct rustc_ast::tokenstream::AttributesData  [−][src]
pub struct AttributesData {
    pub attrs: AttrVec,
    pub tokens: LazyTokenStream,
}Expand description
Stores the tokens for an attribute target, along with its attributes.
This is constructed during parsing when we need to capture tokens.
For example, #[cfg(FALSE)] struct Foo {} would
have an attrs field containing the #[cfg(FALSE)] attr,
and a tokens field storing the (unparesd) tokens struct Foo {}
Fields
attrs: AttrVecAttributes, both outer and inner. These are stored in the original order that they were parsed in.
tokens: LazyTokenStreamThe underlying tokens for the attribute target that attrs
are applied to
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for AttributesData
impl !Send for AttributesData
impl !Sync for AttributesData
impl Unpin for AttributesData
impl !UnwindSafe for AttributesData
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 16 bytes