Struct syntex_syntax::ast::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 | 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
[src]
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
[src]
impl Hash for Delimited
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Decodable for Delimited
[src]
impl Encodable for Delimited
[src]
impl Eq for Delimited
[src]
impl PartialEq for Delimited
[src]
fn eq(&self, __arg_0: &Delimited) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Delimited) -> bool
This method tests for !=
.
impl Clone for Delimited
[src]
fn clone(&self) -> Delimited
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more