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
37
/*
    Appellation: digit <module>
    Creator: FL03 <jo3mccain@icloud.com>
    Description:
        ... Summary ...
*/
use rand::{distributions, prelude::Distribution};

#[derive(Clone, Copy, Debug, Hash, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct DigitGenerator<T>(T);

impl<T> DigitGenerator<T> {
    fn constructor(data: T) -> Self {
        Self(data)
    }
    pub fn new(data: T) -> Self {
        Self::constructor(data)
    }
}

impl<T> DigitGenerator<T>
where
    distributions::Standard: Distribution<T>,
{
    pub fn generate() -> Self {
        Self::new(crate::generate::generate_random_number::<T>())
    }
}

impl<T> Default for DigitGenerator<T>
    where
        distributions::Standard: Distribution<T>,
{
    fn default() -> Self {
        Self::generate()
    }
}