minify-html/src/err.rs

13 lines
293 B
Rust
Raw Normal View History

2019-12-25 04:44:51 -05:00
#[derive(Debug)]
pub enum HbErr {
ExpectedCharNotFound { expected: u8, got: u8 },
ExpectedMatchNotFound(&'static [u8]),
ExpectedNotFound(&'static str),
NoSpaceBeforeAttr,
UnclosedTag,
UnexpectedCharFound(u8),
UnexpectedEnd,
}
pub type HbRes<T> = Result<T, HbErr>;