Struct syntax::ast::DelimitedUnstable [-] [+] [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

The type of delimiter

open_span

The span covering the opening delimiter

tts

The delimited sequence of token trees

close_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.

Trait Implementations

Derived Implementations

impl Debug for Delimited

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

impl Hash for Delimited

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

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

impl Decodable for Delimited

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

impl Encodable for Delimited

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

impl Eq for Delimited

fn assert_receiver_is_total_eq(&self)

impl PartialEq for Delimited

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

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

impl Clone for Delimited

fn clone(&self) -> Delimited

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