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
//! Representations of frequency-based values

pub(crate) mod units {
    use crate::{Period, TimeInt};
    use core::{convert, ops};

    /// A frequency unit type
    #[derive(Ord, PartialOrd, Eq, PartialEq, Debug)]
    pub struct Hertz<T: TimeInt = i32>(pub T);

    impl<T: TimeInt> Hertz<T> {
        /// ```rust
        /// # use embedded_time::{Period, units::*};
        /// assert_eq!(Hertz(1_000).into_period(), Period::new(1, 1_000));
        /// ```
        pub fn into_period(self) -> Period<T> {
            Period::from_frequency(self)
        }

        /// ```rust
        /// # use embedded_time::{Period, units::*};
        /// assert_eq!(Hertz::from_period(Period::new(1, 1_000)), Hertz(1_000));
        /// ```
        pub fn from_period(period: Period<T>) -> Self {
            period.to_frequency()
        }
    }

    impl<T: TimeInt, Rhs: TimeInt> ops::Mul<Rhs> for Hertz<T>
    where
        T: From<Rhs>,
    {
        type Output = Self;

        /// ```rust
        /// # use embedded_time::units::*;
        /// assert_eq!(Hertz(100) * 3, Hertz(300));
        /// ```
        fn mul(self, rhs: Rhs) -> Self::Output {
            Self(self.0 * <T as convert::From<Rhs>>::from(rhs))
        }
    }

    impl<T: TimeInt, Rhs: TimeInt> ops::Div<Rhs> for Hertz<T>
    where
        T: From<Rhs>,
    {
        type Output = Self;

        /// ```rust
        /// # use embedded_time::units::*;
        /// assert_eq!(Hertz(300) / 3, Hertz(100));
        /// ```
        fn div(self, rhs: Rhs) -> Self::Output {
            Self(self.0 / <T as convert::From<Rhs>>::from(rhs))
        }
    }
}