step-io 0.2.4

STEP (ISO 10303) file I/O for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// @generated by codegen. DO NOT EDIT.
// Schema-faithful model + generic 2-pass read + topo write.

//! Output `FILE_SCHEMA` identities for the write side.

pub static AP242E2_FILE_SCHEMA: &[&str] =
    &["AP242_MANAGED_MODEL_BASED_3D_ENGINEERING_MIM_LF { 1 0 10303 442 3 1 4 }"];

/// The schema identity the authoring layer stamps on its output header.
pub fn ap242e2_schema_id() -> crate::parser::SchemaId {
    crate::parser::schema::identify_schema(
        &AP242E2_FILE_SCHEMA
            .iter()
            .map(|s| (*s).to_string())
            .collect::<Vec<_>>(),
    )
}