1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Builder pattern implementations for creating SARIF objects //! //! This module provides ergonomic builder APIs for constructing SARIF objects //! with compile-time validation and fluent interfaces. pub use location_builder::*; pub use result_builder::*; pub use run_builder::*; pub use sarif_builder::*; pub use tool_builder::*; pub mod location_builder; pub mod result_builder; pub mod run_builder; pub mod sarif_builder; pub mod tool_builder;