You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: std/src/random.rs
+15-10
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
//! The [`Random`] trait allows generating a random value for a type using a
4
4
//! given [`RandomSource`].
5
5
6
-
#[unstable(feature = "random", issue = "none")]
6
+
#[unstable(feature = "random", issue = "130703")]
7
7
pubuse core::random::*;
8
8
9
9
usecrate::sys::random as sys;
@@ -15,9 +15,9 @@ use crate::sys::random as sys;
15
15
/// documentation below for the specific guarantees your target provides.
16
16
///
17
17
/// The high quality of randomness provided by this source means it can be quite
18
-
/// slow. If you need a large quantity of random numbers and security is not a
19
-
/// concern, consider using an alternative random number generator (potentially
20
-
/// seeded from this one).
18
+
/// slow on some targets. If you need a large quantity of random numbers and
19
+
/// security is not a concern, consider using an alternative random number
20
+
/// generator (potentially seeded from this one).
21
21
///
22
22
/// # Underlying sources
23
23
///
@@ -26,9 +26,9 @@ use crate::sys::random as sys;
26
26
/// Linux | [`getrandom`] or [`/dev/urandom`] after polling `/dev/random`
27
27
/// Windows | [`ProcessPrng`](https://learn.microsoft.com/en-us/windows/win32/seccng/processprng)
0 commit comments