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