We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6d0de3 + 39819ea commit a5dbb97Copy full SHA for a5dbb97
text/0390-enum-namespacing.md
@@ -161,7 +161,7 @@ pub trait MyTrait { ... }
161
This strategy does not work for flat enums in general. It is not all that
162
uncommon for an enum to have *many* variants - for example, take
163
[`rust-postgres`'s `SqlState`
164
-enum](http://www.rust-ci.org/sfackler/rust-postgres/doc/postgres/error/enum.PostgresSqlState.html),
+enum](https://docs.rs/postgres/0.8.9/postgres/enum.SqlState.html),
165
which contains 232 variants. It would be ridiculous to `pub use` all of them!
166
With namespaced enums, this kind of reexport becomes a simple `pub use` of the
167
enum itself.
0 commit comments