es-entity 0.10.33

Event Sourcing Entity Framework
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Arc;

use super::{manual::ManualClock, realtime::RealtimeClock};

/// Internal clock implementation.
pub(crate) enum ClockInner {
    Realtime(RealtimeClock),
    Manual(Arc<ManualClock>),
}