bacon 0.1.0

a background compiler for rust
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Kind {
    Warning,
    Error,
}

#[derive(Debug, Clone)]
pub struct Item {
    pub kind: Kind,
    pub lines: Vec<String>,
}