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(all(target_arch = "wasm32", target_os = "unknown"))]
7mod wasm_browser;
8#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
9pub use self::wasm_browser::Monotonic;
10
11#[cfg(all(target_arch = "wasm32", target_os = "wasi"))]
12mod wasm_wasi;
13#[cfg(all(target_arch = "wasm32", target_os = "wasi"))]
14pub use self::wasm_wasi::Monotonic;
15
16#[cfg(not(any(target_os = "windows", target_arch = "wasm32")))]
17mod unix;
18#[cfg(not(any(target_os = "windows", target_arch = "wasm32")))]
19pub use self::unix::Monotonic;