use crate::lib::*;
pub trait Reference:
Sized + Add<Duration, Output = Self> + PartialEq + Eq + Ord + Copy + Clone + Send + Sync + Debug
{
fn duration_since(&self, earlier: Self) -> Duration;
fn saturating_sub(&self, duration: Duration) -> Self;
}
pub trait Clock: Default + Clone {
type Instant: Reference;
fn now(&self) -> Self::Instant;
}
impl Reference for Duration {
fn duration_since(&self, earlier: Self) -> Duration {
self.checked_sub(earlier)
.unwrap_or_else(|| Duration::new(0, 0))
}
fn saturating_sub(&self, duration: Duration) -> Self {
self.checked_sub(duration).unwrap_or(*self)
}
}
#[derive(Debug, PartialEq, Clone, Default)]
pub struct FakeRelativeClock {
now: Duration,
}
impl FakeRelativeClock {
pub fn advance(&mut self, by: Duration) {
self.now += by
}
}
impl Clock for FakeRelativeClock {
type Instant = Duration;
fn now(&self) -> Self::Instant {
self.now
}
}
#[cfg(not(feature = "std"))]
mod no_std;
#[cfg(not(feature = "std"))]
pub use no_std::*;
#[cfg(feature = "std")]
mod with_std;
#[cfg(feature = "std")]
pub use with_std::*;