1pub use super::error::Error; 2use nom::IResult; 3 4/// Binary parser for BLP format that produces [Error] when something went wrong 5pub type Parser<'a, T> = IResult<&'a [u8], T, Error<&'a [u8]>>;