1
2
3
4
5
6
#[derive(PartialEq, Eq, Debug)]
pub enum Error {
    EndOfLine,
    InvalidCharacter(usize),
    MismatchedStyle
}