Struct rustc_ast::tokenstream::AttrTokenStream
source · [−]pub struct AttrTokenStream(pub Lrc<Vec<AttrTokenTree>>);
Expand description
An AttrTokenStream
is similar to a TokenStream
, but with extra
information about the tokens for attribute targets. This is used
during expansion to perform early cfg-expansion, and to process attributes
during proc-macro invocations.
Tuple Fields
0: Lrc<Vec<AttrTokenTree>>
Implementations
sourceimpl AttrTokenStream
impl AttrTokenStream
pub fn new(tokens: Vec<AttrTokenTree>) -> AttrTokenStream
sourcepub fn to_tokenstream(&self) -> TokenStream
pub fn to_tokenstream(&self) -> TokenStream
Converts this AttrTokenStream
to a plain TokenStream
.
During conversion, AttrTokenTree::Attributes
get ‘flattened’
back to a TokenStream
of the form outer_attr attr_target
.
If there are inner attributes, they are inserted into the proper
place in the attribute target tokens.
Trait Implementations
sourceimpl Clone for AttrTokenStream
impl Clone for AttrTokenStream
sourcefn clone(&self) -> AttrTokenStream
fn clone(&self) -> AttrTokenStream
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for AttrTokenStream
impl Debug for AttrTokenStream
sourceimpl<__D: Decoder> Decodable<__D> for AttrTokenStream
impl<__D: Decoder> Decodable<__D> for AttrTokenStream
sourceimpl Default for AttrTokenStream
impl Default for AttrTokenStream
sourcefn default() -> AttrTokenStream
fn default() -> AttrTokenStream
sourceimpl<__E: Encoder> Encodable<__E> for AttrTokenStream
impl<__E: Encoder> Encodable<__E> for AttrTokenStream
sourceimpl ToAttrTokenStream for AttrTokenStream
impl ToAttrTokenStream for AttrTokenStream
fn to_attr_token_stream(&self) -> AttrTokenStream
Auto Trait Implementations
impl !RefUnwindSafe for AttrTokenStream
impl !Send for AttrTokenStream
impl !Sync for AttrTokenStream
impl Unpin for AttrTokenStream
impl !UnwindSafe for AttrTokenStream
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn 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: 8 bytes