1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//! Interpreter global pseudorandom number generator.

/// Interpreter global pseudorandom number generator (PRNG).
///
/// Implementations of this trait may be used as the backing pseudorandom number
/// generator for [`Random::DEFAULT`].
///
/// The PRNG used to implement this trait is **not** required to be
/// cryptographically secure. For example, MRI's PRNG is a variant of Mersenne
/// Twister.
///
/// [`Random::DEFAULT`]: https://ruby-doc.org/core-3.1.2/Random.html#DEFAULT
pub trait Prng {
    /// Concrete type for errors when retrieving the pseudorandom number
    /// generator.
    type Error;

    /// Concrete type for the interpreter pseudorandom number generator.
    type Prng;

    /// Return a shared reference to the interpreter pseudorandom number
    /// generator.
    ///
    /// # Errors
    ///
    /// If the PRNG is inaccessible, an error is returned.
    fn prng(&self) -> Result<&Self::Prng, Self::Error>;

    /// Return a mutable reference to the interpreter pseudorandom number
    /// generator.
    ///
    /// # Errors
    ///
    /// If the PRNG is inaccessible, an error is returned.
    fn prng_mut(&mut self) -> Result<&mut Self::Prng, Self::Error>;
}