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
use std::ops;
use std::time::Duration;

use crate::Timestamp;

impl ops::Add<Duration> for Timestamp {
    type Output = Timestamp;

    fn add(self, rhs: Duration) -> Self::Output {
        Self(self.0 + rhs)
    }
}

impl ops::Sub<Duration> for Timestamp {
    type Output = Timestamp;

    fn sub(self, rhs: Duration) -> Self::Output {
        Self(self.0 - rhs)
    }
}

impl Default for Timestamp {
    fn default() -> Self {
        Self::now()
    }
}

impl AsRef<Duration> for Timestamp {
    fn as_ref(&self) -> &Duration {
        &self.0
    }
}

impl AsRef<Timestamp> for Timestamp {
    fn as_ref(&self) -> &Timestamp {
        self
    }
}