minify-html/src/err.rs

14 lines
315 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 {
NoSpaceBeforeAttr,
UnterminatedCssString,
UnterminatedJsString,
2019-12-25 07:29:18 -05:00
CharNotFound { need: u8, got: u8 },
MatchNotFound(&'static [u8]),
NotFound(&'static str),
UnexpectedChar(u8),
UnexpectedEnd,
}
pub type ProcessingResult<T> = Result<T, ErrorType>;