Skip to main content

qubit_progress/running/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! # Running Progress
11//!
12//! Provides helpers for reporting running progress from a separate loop.
13//!
14//! # Author
15//!
16//! Haixing Hu
17
18mod running_progress_loop;
19mod running_progress_notifier;
20mod running_progress_signal;
21
22pub use running_progress_loop::RunningProgressLoop;
23pub use running_progress_notifier::RunningProgressNotifier;