1 2 3 4 5 6 7 8
/// Represents any kind of error that can occur while parsing files
#[derive(Debug, PartialEq)]
pub enum Error {
Disallowed,
NotApplicable,
Undefined,
Unexpected,
}
1 2 3 4 5 6 7 8
/// Represents any kind of error that can occur while parsing files
#[derive(Debug, PartialEq)]
pub enum Error {
Disallowed,
NotApplicable,
Undefined,
Unexpected,
}