Struct quote::Tokens
[−]
[src]
pub struct Tokens(_);
Tokens produced by a quote!(...)
invocation.
Methods
impl Tokens
[src]
fn new() -> Self
Empty tokens.
fn append<T: AsRef<str>>(&mut self, token: T)
For use by ToTokens
implementations.
struct X; impl ToTokens for X { fn to_tokens(&self, tokens: &mut Tokens) { tokens.append("a"); tokens.append("b"); tokens.append("c"); } } let tokens = quote!(#X); assert_eq!(tokens.as_str(), "a b c");
fn append_all<T, I>(&mut self, iter: I) where
T: ToTokens,
I: IntoIterator<Item = T>,
T: ToTokens,
I: IntoIterator<Item = T>,
For use by ToTokens
implementations.
struct X; impl ToTokens for X { fn to_tokens(&self, tokens: &mut Tokens) { tokens.append_all(&[true, false]); } } let tokens = quote!(#X); assert_eq!(tokens.as_str(), "true false");
fn append_separated<T, I, S: AsRef<str>>(&mut self, iter: I, sep: S) where
T: ToTokens,
I: IntoIterator<Item = T>,
T: ToTokens,
I: IntoIterator<Item = T>,
For use by ToTokens
implementations.
struct X; impl ToTokens for X { fn to_tokens(&self, tokens: &mut Tokens) { tokens.append_separated(&[true, false], ","); } } let tokens = quote!(#X); assert_eq!(tokens.as_str(), "true , false");
fn append_terminated<T, I, S: AsRef<str>>(&mut self, iter: I, term: S) where
T: ToTokens,
I: IntoIterator<Item = T>,
T: ToTokens,
I: IntoIterator<Item = T>,
For use by ToTokens
implementations.
struct X; impl ToTokens for X { fn to_tokens(&self, tokens: &mut Tokens) { tokens.append_terminated(&[true, false], ","); } } let tokens = quote!(#X); assert_eq!(tokens.as_str(), "true , false ,");
fn as_str(&self) -> &str
fn into_string(self) -> String
fn parse<T: FromStr>(&self) -> Result<T, T::Err>
Trait Implementations
impl Debug for Tokens
[src]
impl Clone for Tokens
[src]
fn clone(&self) -> Tokens
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
impl Eq for Tokens
[src]
impl PartialEq for Tokens
[src]
fn eq(&self, __arg_0: &Tokens) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Tokens) -> bool
This method tests for !=
.
impl Default for Tokens
[src]
impl Display for Tokens
[src]
fn fmt(&self, formatter: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more