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.
1 parent 4025e79 commit 052f7b6Copy full SHA for 052f7b6
futures-util/src/lib.rs
@@ -36,16 +36,13 @@ pub use self::async_await::*;
36
#[cfg(feature = "async-await")]
37
#[doc(hidden)]
38
pub mod rand_reexport { // used by select!
39
- pub use rand::{prelude::SliceRandom, thread_rng};
40
-
41
- // HACK: Define dummy `ThreadRng` to avoid `intra_doc_link_resolution_failure` warning.
42
- #[allow(missing_debug_implementations)]
43
44
- pub struct ThreadRng {}
+ pub use rand::{prelude::SliceRandom, thread_rng};
45
}
46
47
48
pub mod core_reexport {
+ #[doc(hidden)]
49
pub use core::*;
50
51
0 commit comments