We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 955064b commit 70e19fdCopy full SHA for 70e19fd
crates/hir_def/src/data.rs
@@ -143,6 +143,9 @@ pub struct TraitData {
143
pub is_auto: bool,
144
pub is_unsafe: bool,
145
pub visibility: RawVisibility,
146
+ /// Whether the trait has `#[rust_skip_array_during_method_dispatch]`. `hir_ty` will ignore
147
+ /// method calls to this trait's methods when the receiver is an array and the crate edition is
148
+ /// 2015 or 2018.
149
pub skip_array_during_method_dispatch: bool,
150
}
151
0 commit comments