1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#[derive(Debug)] pub enum LintuiniError { ElementError(ElementError), } #[derive(Debug)] pub enum ElementError { SetSize, AddChild, } #[derive(Debug)] pub enum CompositorError { }