We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e3212 commit 9f8c8e4Copy full SHA for 9f8c8e4
compiler/rustc_middle/src/ty/mod.rs
@@ -1,3 +1,14 @@
1
+//! Defines how the compiler represents types internally.
2
+//!
3
+//! Two important entities in this module are:
4
5
+//! - [`rustc_middle::ty::Ty`], used to represent the semantics of a type.
6
+//! - [`rustc_middle::ty::TyCtxt`], the central data structure in the compiler.
7
8
+//! For more information, see ["The `ty` module: representing types"] in the ructc-dev-guide.
9
10
+//! ["The `ty` module: representing types"]: https://rustc-dev-guide.rust-lang.org/ty.html
11
+
12
// ignore-tidy-filelength
13
pub use self::fold::{TypeFoldable, TypeFolder, TypeVisitor};
14
pub use self::AssocItemContainer::*;
0 commit comments