Struct syntex_syntax::tokenstream::Delimited [] [src]

pub struct Delimited {
    pub delim: DelimToken,
    pub open_span: Span,
    pub tts: Vec<TokenTree>,
    pub close_span: Span,
}

A delimited sequence of token trees

Fields

delim: DelimToken

The type of delimiter

open_span: Span

The span covering the opening delimiter

tts: Vec<TokenTree>

The delimited sequence of token trees

close_span: Span

The span covering the closing delimiter

Methods

impl Delimited
[src]

fn open_token(&self) -> Token

Returns the opening delimiter as a token.

fn close_token(&self) -> Token

Returns the closing delimiter as a token.

fn open_tt(&self) -> TokenTree

Returns the opening delimiter as a token tree.

fn close_tt(&self) -> TokenTree

Returns the closing delimiter as a token tree.

fn subtrees(&self) -> &[TokenTree]

Returns the token trees inside the delimiters.

Trait Implementations

impl Debug for Delimited
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Hash for Delimited
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Decodable for Delimited
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Delimited, __D::Error>

impl Encodable for Delimited
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Eq for Delimited
[src]

impl PartialEq for Delimited
[src]

fn eq(&self, __arg_0: &Delimited) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Delimited) -> bool

This method tests for !=.

impl Clone for Delimited
[src]

fn clone(&self) -> Delimited

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more