scru128 3.6.1

SCRU128: Sortable, Clock and Random number-based Unique identifier
Documentation
//! Integration with `rand` (v0.8) crate.

#![cfg(feature = "rand08")]
#![deprecated(since = "3.3.0", note = "use a newer version of `rand` crate")]

use super::{Generator, RandSource, StdSystemTime};
use rand_core06::RngCore;

/// An adapter that implements [`RandSource`] for [`RngCore`] types.
#[derive(Clone, Eq, PartialEq, Debug, Default)]
pub struct Adapter<T>(/** The wrapped [`RngCore`] type. */ pub T);

impl<T: RngCore> RandSource for Adapter<T> {
    fn next_u32(&mut self) -> u32 {
        self.0.next_u32()
    }
}

impl<T: RngCore> Generator<Adapter<T>> {
    /// Creates a generator object with a specified random number generator that implements
    /// [`RngCore`] from `rand` (v0.8) crate. The specified random number generator should be
    /// cryptographically strong and securely seeded.
    ///
    /// # Examples
    ///
    /// ```ignore
    /// # use rand08 as rand;
    /// let mut g = scru128::Generator::with_rand08(rand::thread_rng());
    /// println!("{}", g.generate());
    /// ```
    pub const fn with_rand08(rng: T) -> Self {
        Self::with_rand_and_time_sources(Adapter(rng), StdSystemTime)
    }
}

/// This is a deprecated blanket impl retained for backward compatibility. Do not depend on this
/// impl; use [`Generator::with_rand08()`] instead.
#[cfg(feature = "rand")]
impl<T: RngCore> RandSource for T {
    fn next_u32(&mut self) -> u32 {
        self.next_u32()
    }
}