~tm85/lintuini

ref: 3873712ae1cc616bff72c3dae4513bc21bf5f67f lintuini/src/error.rs -rw-r--r-- 195 bytes
3873712aTerraMaster85 feat: element.rs: wow it compiles again. api general idea now stable ish? 27 days ago
                                                                                
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 RenderError {
    
}