Searched defs:Punctuated (Results 1 – 4 of 4) sorted by relevance
/third_party/rust/crates/syn/src/ |
D | punctuated.rs | 47 pub struct Punctuated<T, P> { struct 52 impl<T, P> Punctuated<T, P> { argument 372 impl<T, P> Clone for Punctuated<T, P> implementation 387 impl<T, P> Eq for Punctuated<T, P> implementation 396 impl<T, P> PartialEq for Punctuated<T, P> implementation 402 let Punctuated { inner, last } = self; in eq() localVariable 409 impl<T, P> Hash for Punctuated<T, P> implementation 415 let Punctuated { inner, last } = self; in hash() localVariable 423 impl<T: Debug, P: Debug> Debug for Punctuated<T, P> { implementation 437 impl<T, P> FromIterator<T> for Punctuated<T, P> implementation [all …]
|
D | parse_quote.rs | 156 impl<T: Parse, P: Parse> ParseQuote for Punctuated<T, P> { implementation
|
D | gen_helper.rs | 24 impl<T, U> FoldHelper for Punctuated<T, U> { implementation
|
/third_party/rust/crates/syn/json/src/ |
D | lib.rs | 160 Punctuated(Punctuated), enumerator 181 pub struct Punctuated { struct 182 pub element: Box<Type>, 183 pub punct: String,
|