pub struct ValidationReport {
pub entity_issues: HashMap<String, Vec<FitIssue>>,
pub dangling_refs: Vec<(String, String, String)>,
pub spec_coverage: f64,
pub summary: ValidationSummary,
}Expand description
Full validation report for a graph.
Fields§
§entity_issues: HashMap<String, Vec<FitIssue>>Per-entity fit issues (entity_id → issues).
dangling_refs: Vec<(String, String, String)>Dangling references: (entity_id, tag_name, missing_ref_val).
spec_coverage: f64Fraction of entities that match at least one known spec (0.0 - 1.0).
summary: ValidationSummarySummary statistics.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnsafeUnpin for ValidationReport
impl UnwindSafe for ValidationReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more