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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//! Measurement units

/// Hertz
#[derive(Clone, Copy)]
pub struct Hertz(pub u32);

/// Kilo hertz
#[derive(Clone, Copy)]
pub struct KiloHertz(pub u32);

/// Mega hertz
#[derive(Clone, Copy)]
pub struct MegaHertz(pub u32);

/// Extension trait that add convenient methods to the `u32` type
pub trait U32Ext {
    /// Wrap in `Hertz`
    fn hz(self) -> Hertz;
    /// Wrap in `KiloHertz`
    fn khz(self) -> KiloHertz;
    /// Wrap in `MegaHertz`
    fn mhz(self) -> MegaHertz;
    /// Wrap in `MilliSeconds`
    fn ms(self) -> MilliSeconds;
    /// Wrap in `MicroSeconds`
    fn us(self) -> MicroSeconds;
    /// Wrap in `Bps`
    fn bps(self) -> Bps;
}

impl U32Ext for u32 {
    fn hz(self) -> Hertz {
        Hertz(self)
    }

    fn khz(self) -> KiloHertz {
        KiloHertz(self)
    }

    fn mhz(self) -> MegaHertz {
        MegaHertz(self)
    }

    fn ms(self) -> MilliSeconds {
        MilliSeconds(self)
    }

    fn us(self) -> MicroSeconds {
        MicroSeconds(self)
    }

    fn bps(self) -> Bps {
        Bps(self)
    }
}

impl Into<Hertz> for KiloHertz {
    fn into(self) -> Hertz {
        Hertz(self.0 * 1_000)
    }
}

impl Into<Hertz> for MegaHertz {
    fn into(self) -> Hertz {
        Hertz(self.0 * 1_000_000)
    }
}

impl Into<KiloHertz> for MegaHertz {
    fn into(self) -> KiloHertz {
        KiloHertz(self.0 * 1_000)
    }
}

/// Milliseconds
pub struct MilliSeconds(pub u32);

// todo: there's no need for accurate time units by now
/// Microseconds
pub struct MicroSeconds(pub u32);

impl Into<MicroSeconds> for MilliSeconds {
    fn into(self) -> MicroSeconds {
        MicroSeconds(self.0 * 1_000)
    }
}

/// Bits per second
pub struct Bps(pub u32);