Lines Matching refs:Punctuated
2 use crate::punctuated::{Iter, IterMut, Punctuated};
17 pub params: Punctuated<GenericParam, Token![,]>,
58 pub bounds: Punctuated<TypeParamBound, Token![+]>,
74 pub bounds: Punctuated<Lifetime, Token![+]>,
99 params: Punctuated::new(), in default()
177 predicates: Punctuated::new(), in make_where_clause()
430 pub lifetimes: Punctuated<LifetimeDef, Token![,]>,
440 lifetimes: Punctuated::new(), in default()
452 bounds: Punctuated::new(), in new()
463 bounds: Punctuated::new(), in from()
520 pub predicates: Punctuated<WherePredicate, Token![,]>,
561 pub bounds: Punctuated<TypeParamBound, Token![+]>,
574 pub bounds: Punctuated<Lifetime, Token![+]>,
606 let mut params = Punctuated::new(); in parse()
634 bounds: Punctuated::new(), in parse()
704 let mut bounds = Punctuated::new(); in parse()
732 let mut lifetimes = Punctuated::new(); in parse()
767 let mut bounds = Punctuated::new(); in parse()
835 ) -> Result<Punctuated<Self, Token![+]>> { in parse_multiple()
836 let mut bounds = Punctuated::new(); in parse_multiple()
946 let mut predicates = Punctuated::new(); in parse()
990 let mut bounds = Punctuated::new(); in parse()
1018 let mut bounds = Punctuated::new(); in parse()
1274 Some(Pair::Punctuated(t, p)) if t.ident == "const" => { in to_tokens()