Struct proc_macro2::Group [−][src]
pub struct Group { /* fields omitted */ }A delimited token stream.
A Group internally contains a TokenStream which is surrounded by
Delimiters.
Methods
impl Group[src]
impl Grouppub fn new(delimiter: Delimiter, stream: TokenStream) -> Group[src]
pub fn new(delimiter: Delimiter, stream: TokenStream) -> GroupCreates a new Group with the given delimiter and token stream.
This constructor will set the span for this group to
Span::call_site(). To change the span you can use the set_span
method below.
pub fn delimiter(&self) -> Delimiter[src]
pub fn delimiter(&self) -> DelimiterReturns the delimiter of this Group
pub fn stream(&self) -> TokenStream[src]
pub fn stream(&self) -> TokenStreamReturns the TokenStream of tokens that are delimited in this Group.
Note that the returned token stream does not include the delimiter returned above.
pub fn span(&self) -> Span[src]
pub fn span(&self) -> SpanReturns the span for the delimiters of this token stream, spanning the
entire Group.
pub fn set_span(&mut self, span: Span)[src]
pub fn set_span(&mut self, span: Span)Configures the span for this Group's delimiters, but not its internal
tokens.
This method will not set the span of all the internal tokens spanned
by this group, but rather it will only set the span of the delimiter
tokens at the level of the Group.
Trait Implementations
impl From<Group> for TokenTree[src]
impl From<Group> for TokenTreeimpl Clone for Group[src]
impl Clone for Groupfn clone(&self) -> Group[src]
fn clone(&self) -> GroupReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Display for Group[src]
impl Display for GroupPrints the group as a string that should be losslessly convertible back
into the same group (modulo spans), except for possibly TokenTree::Groups
with Delimiter::None delimiters.
fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Debug for Group[src]
impl Debug for Group