Lines Matching refs:nested
141 let nested = introspect_type(first_arg(&last.arguments), lookup);
142 types::Type::Option(Box::new(nested))
145 let nested = introspect_type(first_arg(&last.arguments), lookup);
152 element: Box::new(nested),
157 let nested = introspect_type(first_arg(&last.arguments), lookup);
158 types::Type::Vec(Box::new(nested))
161 let nested = introspect_type(first_arg(&last.arguments), lookup);
162 types::Type::Box(Box::new(nested))
448 let nested;
449 parenthesized!(nested in input);
451 while !nested.is_empty() {
452 features.insert(parse_feature(&nested)?);
454 if !nested.is_empty() {
455 nested.parse::<Token![,]>()?;