We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4b3075 commit f8b130aCopy full SHA for f8b130a
crates/hir-def/src/generics.rs
@@ -144,9 +144,9 @@ pub enum WherePredicateTypeTarget {
144
145
#[derive(Clone, Default)]
146
pub(crate) struct GenericParamsCollector {
147
- pub type_or_consts: Arena<TypeOrConstParamData>,
148
- pub lifetimes: Arena<LifetimeParamData>,
149
- pub where_predicates: Vec<WherePredicate>,
+ pub(crate) type_or_consts: Arena<TypeOrConstParamData>,
+ lifetimes: Arena<LifetimeParamData>,
+ where_predicates: Vec<WherePredicate>,
150
}
151
152
impl GenericParamsCollector {
0 commit comments