We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4901896 commit 17f9937Copy full SHA for 17f9937
src/librustc/middle/privacy.rs
@@ -23,9 +23,8 @@ use syntax::ast::NodeId;
23
pub enum AccessLevel {
24
// Exported items + items participating in various kinds of public interfaces,
25
// but not directly nameable. For example, if function `fn f() -> T {...}` is
26
- // public, then type `T` is exported. Its values can be obtained by other crates
27
- // even if the type itseld is not nameable.
28
- // FIXME: Mostly unimplemented. Only `type` aliases export items currently.
+ // public, then type `T` is reachable. Its values can be obtained by other crates
+ // even if the type itself is not nameable.
29
Reachable,
30
// Public items + items accessible to other crates with help of `pub use` reexports
31
Exported,
0 commit comments