Searched defs:Punctuated (Results 1 – 4 of 4) sorted by relevance
/third_party/rust/crates/syn/src/ |
D | punctuated.rs | 46 pub struct Punctuated<T, P> { struct 51 impl<T, P> Punctuated<T, P> { impl 361 impl<T, P> Clone for Punctuated<T, P> implementation 381 impl<T, P> Eq for Punctuated<T, P> implementation 390 impl<T, P> PartialEq for Punctuated<T, P> implementation 396 let Punctuated { inner, last } = self; in eq() localVariable 403 impl<T, P> Hash for Punctuated<T, P> implementation 409 let Punctuated { inner, last } = self; in hash() localVariable 417 impl<T: Debug, P: Debug> Debug for Punctuated<T, P> { implementation 431 impl<T, P> FromIterator<T> for Punctuated<T, P> implementation [all …]
|
D | gen_helper.rs | 22 impl<T, U> FoldHelper for Punctuated<T, U> { implementation
|
D | parse_quote.rs | 198 impl<T: Parse, P: Parse> ParseQuote for Punctuated<T, P> { implementation
|
/third_party/rust/crates/syn/json/src/ |
D | lib.rs | 161 Punctuated(Punctuated), enumerator 182 pub struct Punctuated { struct 183 pub element: Box<Type>, 184 pub punct: String,
|