quanta/clocks/monotonic/
mod.rs

1#[cfg(target_os = "windows")]
2mod windows;
3#[cfg(target_os = "windows")]
4pub use self::windows::Monotonic;
5
6#[cfg(target_arch = "wasm32")]
7mod wasm;
8#[cfg(target_arch = "wasm32")]
9pub use self::wasm::Monotonic;
10
11#[cfg(not(any(target_os = "windows", target_arch = "wasm32")))]
12mod unix;
13#[cfg(not(any(target_os = "windows", target_arch = "wasm32")))]
14pub use self::unix::Monotonic;