Struct rustc_ap_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 AttributesDataimpl !Send for AttributesDataimpl !Sync for AttributesDataimpl Unpin for AttributesDataimpl !UnwindSafe for AttributesDataBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V