1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pub type Root = RootType; #[derive(Debug)] pub struct RootType { pub refname: Option<RootRefnameType>, pub content: EnumListType, } #[derive(Debug)] pub enum EnumListType { _01, _02, } #[derive(Debug)] pub enum RootRefnameType { EnumValue, }