limbo_core 0.0.19

The Limbo database library
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct Instant {
    pub secs: i64,
    pub micros: u32,
}

pub trait Clock {
    fn now(&self) -> Instant;
}