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_point_handle;
21mod running_progress_signal;
22mod scoped_running_progress;
23
24pub use running_progress_loop::RunningProgressLoop;
25pub use running_progress_notifier::RunningProgressNotifier;
26pub use running_progress_point_handle::RunningProgressPointHandle;
27pub use scoped_running_progress::ScopedRunningProgress;