Skip to main content

qubit_clock/sleep/
mod.rs

1// =============================================================================
2//    Copyright (c) 2025 - 2026 Haixing Hu.
3//
4//    SPDX-License-Identifier: Apache-2.0
5//
6//    Licensed under the Apache License, Version 2.0.
7// =============================================================================
8//! Blocking adaptation over asynchronous monotonic timers.
9
10mod blocking_sleeper;
11pub(crate) mod internal;
12
13pub use blocking_sleeper::BlockingSleeper;