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>, }