ockam_identity 0.134.0

Ockam is a library for building devices that communicate securely, privately and trustfully with cloud services and other devices.
Documentation
use crate::TimestampInSeconds;
use ockam_core::compat::time::Duration;

impl core::ops::Deref for TimestampInSeconds {
    type Target = u64;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl From<u64> for TimestampInSeconds {
    fn from(value: u64) -> Self {
        Self(value)
    }
}

impl From<Duration> for TimestampInSeconds {
    fn from(value: Duration) -> Self {
        Self(value.as_secs())
    }
}

impl From<TimestampInSeconds> for Duration {
    fn from(value: TimestampInSeconds) -> Self {
        Self::from_secs(value.0)
    }
}

impl core::ops::Add<TimestampInSeconds> for TimestampInSeconds {
    type Output = TimestampInSeconds;

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

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

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

impl core::ops::Add<u64> for TimestampInSeconds {
    type Output = TimestampInSeconds;

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

impl core::ops::Sub<TimestampInSeconds> for TimestampInSeconds {
    type Output = TimestampInSeconds;

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

impl TimestampInSeconds {
    /// Calculate absolute difference between the two values.
    pub fn abs_diff(self, other: Self) -> Self {
        Self(self.0.abs_diff(other.0))
    }
}