mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-18 18:05:01 +00:00
9 lines
176 B
Rust
9 lines
176 B
Rust
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
|
pub struct Instant {
|
|
pub secs: i64,
|
|
pub micros: u32,
|
|
}
|
|
|
|
pub trait Clock {
|
|
fn now(&self) -> Instant;
|
|
}
|