minify-html/src/err.rs

12 lines
260 B
Rust
Raw Normal View History

2019-12-25 04:44:51 -05:00
#[derive(Debug)]
2019-12-25 07:29:18 -05:00
pub enum ErrorType {
CharNotFound { need: u8, got: u8 },
MatchNotFound(&'static [u8]),
NotFound(&'static str),
NoSpaceBeforeAttr,
2019-12-25 07:29:18 -05:00
UnexpectedChar(u8),
UnexpectedEnd,
}
2019-12-25 07:29:18 -05:00
pub type InternalResult<T> = Result<T, ErrorType>;