iso-10303 0.5.0

A Rust crate for generating STEP reader code.
Documentation
1
2
3
4
5
6
7
8
use super::{Constant, Declaration};

#[derive(Debug)]
pub struct Schema {
    pub name: String,
    pub constants: Vec<Constant>,
    pub declarations: Vec<Declaration>,
}