sarif_rust 0.3.0

A comprehensive Rust library for parsing, generating, and manipulating SARIF (Static Analysis Results Interchange Format) v2.1.0 files
Documentation
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;