lib3mf-core 0.4.0

Parse and validate 3MF files for manufacturing workflows - production-ready with streaming parser and comprehensive validation
Documentation
1
2
3
4
5
6
7
use crate::model::Model;
use crate::validation::report::ValidationReport;

/// Performs basic schema checks not caught by the XML parser.
pub fn validate_schema(_model: &Model, _report: &mut ValidationReport) {
    // Basic schema checks that aren't caught by parser
}