pub type ParseResult<T> = Result<T, ParseError>;Expand description
Result type for parsing operations
Aliased Type§
pub enum ParseResult<T> {
Ok(T),
Err(CompilerError),
}pub type ParseResult<T> = Result<T, ParseError>;Result type for parsing operations
pub enum ParseResult<T> {
Ok(T),
Err(CompilerError),
}