Struct syntax::ext::tt::quoted::Delimited [−][src]
pub struct Delimited {
pub delim: DelimToken,
pub tts: Vec<TokenTree>,
}Contains the sub-token-trees of a "delimited" token tree, such as the contents of (. Note
that the delimiter itself might be NoDelim.
Fields
delim: DelimToken
tts: Vec<TokenTree>
Methods
impl Delimited[src]
impl Delimitedpub fn open_token(&self) -> Token[src]
pub fn open_token(&self) -> TokenReturn the opening delimiter (possibly NoDelim).
pub fn close_token(&self) -> Token[src]
pub fn close_token(&self) -> TokenReturn the closing delimiter (possibly NoDelim).
pub fn open_tt(&self, span: Span) -> TokenTree[src]
pub fn open_tt(&self, span: Span) -> TokenTreeReturn a self::TokenTree with a Span corresponding to the opening delimiter.
pub fn close_tt(&self, span: Span) -> TokenTree[src]
pub fn close_tt(&self, span: Span) -> TokenTreeReturn a self::TokenTree with a Span corresponding to the closing delimiter.
Trait Implementations
impl Clone for Delimited[src]
impl Clone for Delimitedfn clone(&self) -> Delimited[src]
fn clone(&self) -> DelimitedReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for Delimited[src]
impl PartialEq for Delimitedfn eq(&self, other: &Delimited) -> bool[src]
fn eq(&self, other: &Delimited) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Delimited) -> bool[src]
fn ne(&self, other: &Delimited) -> boolThis method tests for !=.
impl Encodable for Delimited[src]
impl Encodable for Delimitedimpl Decodable for Delimited[src]
impl Decodable for Delimitedimpl Debug for Delimited[src]
impl Debug for Delimited