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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use core::{
ops::Deref,
ops::{Div, Mul},
};
use num_traits::SaturatingMul;
#[derive(Clone, Copy, Debug)]
pub struct Pct(u16);
impl Pct {
pub fn from_percent(pct: u16) -> Self {
Pct(pct)
}
#[cfg(feature = "with-rand")]
pub fn is_in_rnd_pbty<R>(self, rng: &mut R) -> bool
where
R: rand::Rng,
{
let random = rng.gen::<u16>() % 100;
random < self.0
}
}
impl AsRef<u16> for Pct {
fn as_ref(&self) -> &u16 {
&self.0
}
}
impl Deref for Pct {
type Target = u16;
fn deref(&self) -> &u16 {
&self.0
}
}
impl<T> Mul<T> for Pct
where
T: Div<T, Output = T> + From<u16> + SaturatingMul,
{
type Output = T;
fn mul(self, rhs: T) -> T {
let t: T = self.0.into();
t.saturating_mul(&rhs).div(100.into())
}
}