nextest_runner/reporter/structured/
mod.rs

1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Reporting of data in a streaming, structured fashion.
5//!
6//! This module provides structured output reporters:
7//!
8//! - [`LibtestReporter`]: Compatibility layer with libtest JSON output.
9//! - [`RecordReporter`]: Records test runs to disk for later inspection.
10
11mod imp;
12mod libtest;
13mod recorder;
14
15pub use imp::*;
16pub use libtest::*;
17pub use recorder::RecordReporter;