mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-22 02:34:20 +01:00
10 lines
176 B
Rust
10 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;
|
|
}
|