]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc/mir/mod.rs
Fix nits from review
[rust.git] / src / librustc / mir / mod.rs
index 8a847115c9faf5d0a4c379fdbdb57f322c95991d..53ef61f15766590941382a4429d4d1681583596a 100644 (file)
@@ -2770,8 +2770,12 @@ pub struct BorrowCheckResult<'tcx> {
 }
 
 /// The result of the `mir_const_qualif` query.
+///
+/// Each field corresponds to an implementer of the `Qualif` trait in
+/// `librustc_mir/transform/check_consts/qualifs.rs`. See that file for more information on each
+/// `Qualif`.
 #[derive(Clone, Copy, Debug, Default, RustcEncodable, RustcDecodable, HashStable)]
-pub struct QualifSet {
+pub struct ConstQualifs {
     pub has_mut_interior: bool,
     pub needs_drop: bool,
 }