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]
pub fn open_token(&self) -> Token
[src]
Return the opening delimiter (possibly NoDelim
).
pub fn close_token(&self) -> Token
[src]
Return the closing delimiter (possibly NoDelim
).
pub fn open_tt(&self, span: Span) -> TokenTree
[src]
Return a self::TokenTree
with a Span
corresponding to the opening delimiter.
pub fn close_tt(&self, span: Span) -> TokenTree
[src]
Return a self::TokenTree
with a Span
corresponding to the closing delimiter.
Trait Implementations
impl Clone for Delimited
[src]
fn clone(&self) -> Delimited
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for Delimited
[src]
fn eq(&self, __arg_0: &Delimited) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Delimited) -> bool
[src]
This method tests for !=
.
impl Eq for Delimited
[src]
impl Encodable for Delimited
[src]
impl Decodable for Delimited
[src]
impl Hash for Delimited
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more