summaryrefslogtreecommitdiff
path: root/src/timestamp.rs
blob: 645fb0defe71a3867260f809975537474b48f292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

use std::ops::{Add, Sub};

#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct Timestamp(pub i64);

impl Add<i64> for Timestamp {
    type Output = Self;
    fn add(self, other: i64) -> Self {
        Self(self.0 + other)
    }
}

impl Sub<i64> for Timestamp {
    type Output = Self;
    fn sub(self, other: i64) -> Self {
        Self(self.0 - other)
    }
}