qubit_progress/reporter/format/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//! Formatting support for progress metric snapshots.
11
12pub(crate) mod format_duration;
13mod human_readable_metric_snapshot_formatter;
14mod json_metric_snapshot_formatter;
15mod metric_snapshot_formatter;
16
17pub use human_readable_metric_snapshot_formatter::HumanReadableMetricSnapshotFormatter;
18pub use json_metric_snapshot_formatter::JsonMetricSnapshotFormatter;
19pub use metric_snapshot_formatter::MetricSnapshotFormatter;