1//! Result types for parsing. 2 3use crate::ParseError; 4 5/// The result of parsing. 6pub type ParseResult<T> = Result<T, ParseError>;