Struct rustc_parse::parser::AttrWrapper
source · pub struct AttrWrapper {
attrs: AttrVec,
start_pos: usize,
}
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 ast::AttrVec>
.
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 an ast::AttrVec
) 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§
source§impl AttrWrapper
impl AttrWrapper
pub(super) fn new(attrs: AttrVec, start_pos: usize) -> AttrWrapper
pub fn empty() -> AttrWrapper
pub(crate) fn take_for_recovery(self, sess: &ParseSess) -> AttrVec
sourcepub(crate) fn prepend_to_nt_inner(self, attrs: &mut AttrVec)
pub(crate) fn prepend_to_nt_inner(self, attrs: &mut AttrVec)
Prepend self.attrs
to attrs
.
pub fn is_empty(&self) -> bool
pub fn is_complete(&self) -> bool
Trait Implementations§
source§impl Clone for AttrWrapper
impl Clone for AttrWrapper
source§fn clone(&self) -> AttrWrapper
fn clone(&self) -> AttrWrapper
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for AttrWrapper
impl !Send for AttrWrapper
impl !Sync for AttrWrapper
impl Unpin for AttrWrapper
impl !UnwindSafe for AttrWrapper
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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