fret-runtime 0.1.0

Runtime abstractions and scheduling surfaces for host integration in Fret.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, Clone, Copy)]
pub struct ModelCreatedDebugInfo {
    pub type_name: &'static str,
    pub file: &'static str,
    pub line: u32,
    pub column: u32,
}

#[derive(Debug, Clone, Copy)]
pub struct ModelChangedDebugInfo {
    pub type_name: &'static str,
    pub file: &'static str,
    pub line: u32,
    pub column: u32,
}