Home
last modified time | relevance | path

Searched defs:Punctuated (Results 1 – 2 of 2) sorted by relevance

/linux/rust/syn/
H A Dpunctuated.rs49 pub struct Punctuated<T, P> { struct
54 impl<T, P> Punctuated<T, P> { argument
387 impl<T, P> Clone for Punctuated<T, P> implementation
407 impl<T, P> Eq for Punctuated<T, P> implementation
416 impl<T, P> PartialEq for Punctuated<T, P> implementation
422 let Punctuated { inner, last } = self; in eq() localVariable
429 impl<T, P> Hash for Punctuated<T, P> implementation
435 let Punctuated { inner, last } = self; in hash() localVariable
443 impl<T: Debug, P: Debug> Debug for Punctuated<T, P> { implementation
457 impl<T, P> FromIterator<T> for Punctuated<T, P> implementation
[all …]
H A Dparse_quote.rs224 impl<T: Parse, P: Parse> ParseQuote for Punctuated<T, P> { implementation