Home
last modified time | relevance | path

Searched refs:ParseQuote (Results 1 – 1 of 1) sorted by relevance

/linux/rust/syn/
H A Dparse_quote.rs130 pub fn parse<T: ParseQuote>(token_stream: TokenStream) -> T { in parse()
139 pub trait ParseQuote: Sized { trait
143 impl<T: Parse> ParseQuote for T {
159 impl ParseQuote for Attribute {
170 impl ParseQuote for Vec<Attribute> {
174 attrs.push(ParseQuote::parse(input)?); in parse()
181 impl ParseQuote for Field {
211 impl ParseQuote for Pat {
218 impl ParseQuote for Box<Pat> {
220 <Pat as ParseQuote>::parse(input).map(Box::new) in parse()
[all …]