Struct rustc_parse::parser::AttrWrapper [−][src]
Expand description
A wrapper type to ensure that the parser handles outer attributes correctly. When we parse outer attributes, we need to ensure that we capture tokens for the attribute target. This allows us to perform cfg-expansion on a token stream before we invoke a derive proc-macro.
This wrapper prevents direct access to the underlying Vec<ast::Attribute>
.
Parsing code can only get access to the underlying attributes
by passing an AttrWrapper
to collect_tokens_trailing_tokens
.
This makes it difficult to accidentally construct an AST node
(which stores a Vec<ast::Attribute>
) without first collecting tokens.
This struct has its own module, to ensure that the parser code
cannot directly access the attrs
field
Fields
attrs: AttrVec
start_pos: usize
Implementations
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for AttrWrapper
impl !Send for AttrWrapper
impl !Sync for AttrWrapper
impl Unpin for AttrWrapper
impl !UnwindSafe for AttrWrapper
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