Struct lexx::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

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

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

impl Hash for Delimited

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

impl Decodable for Delimited

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

impl Encodable for Delimited

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

impl Eq for Delimited

impl PartialEq<Delimited> for Delimited

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

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

impl Clone for Delimited

fn clone(&self) -> Delimited