datarust-profile 0.3.1

One-call data profiling and quality reports for the datarust ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Report renderers for a [`crate::DatasetProfile`].
//!
//! - `json` — structured JSON serialization (requires the `serde` feature).
//! - `html` — a dependency-free, self-contained HTML report.

pub mod html;
#[cfg(feature = "serde")]
pub mod json;

pub use html::{to_html, to_html_with};
#[cfg(feature = "serde")]
pub use json::{to_json, to_json_file, JsonReport};