[−][src]Struct proc_macro2::Group
A delimited token stream.
A Group
internally contains a TokenStream
which is surrounded by
Delimiter
s.
Methods
impl Group
[src]
pub fn new(delimiter: Delimiter, stream: TokenStream) -> Group
[src]
Creates 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]
Returns the delimiter of this Group
pub fn stream(&self) -> TokenStream
[src]
Returns 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]
Returns the span for the delimiters of this token stream, spanning the
entire Group
.
pub fn span(&self) -> Span {
^^^^^^^
pub fn set_span(&mut self, span: Span)
[src]
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 Clone for Group
[src]
fn clone(&self) -> Group
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl From<Group> for TokenTree
[src]
impl Debug for Group
[src]
impl Display for Group
[src]
Prints the group as a string that should be losslessly convertible back
into the same group (modulo spans), except for possibly TokenTree::Group
s
with Delimiter::None
delimiters.
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,