Struct syntax::ast::DelimitedExperimental [-]  [+] [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 Show for Delimited

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

impl<__S: Writer> Hash<__S> for Delimited

fn hash(&self, __arg_0: &mut __S)

impl<__D: Decoder<__E>, __E> Decodable<__D, __E> for Delimited

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

impl<__S: Encoder<__E>, __E> Encodable<__S, __E> for Delimited

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

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)