Lines Matching defs:next
180 fn next(&mut self) -> Option<Self::Item> {
181 let next = match self.0.next() {
185 if let GenericParam::Lifetime(lifetime) = next {
188 self.next()
198 fn next(&mut self) -> Option<Self::Item> {
199 let next = match self.0.next() {
203 if let GenericParam::Lifetime(lifetime) = next {
206 self.next()
216 fn next(&mut self) -> Option<Self::Item> {
217 let next = match self.0.next() {
221 if let GenericParam::Type(type_param) = next {
224 self.next()
234 fn next(&mut self) -> Option<Self::Item> {
235 let next = match self.0.next() {
239 if let GenericParam::Type(type_param) = next {
242 self.next()
252 fn next(&mut self) -> Option<Self::Item> {
253 let next = match self.0.next() {
257 if let GenericParam::Const(const_param) = next {
260 self.next()
270 fn next(&mut self) -> Option<Self::Item> {
271 let next = match self.0.next() {
275 if let GenericParam::Const(const_param) = next {
278 self.next()