pub type ParseResult<T> = Result<T, WagParseError>;Expand description
Any parse will either return the node we are trying to parse, or a WagParseError.
Aliased Type§
pub enum ParseResult<T> {
Ok(T),
Err(WagParseError),
}pub type ParseResult<T> = Result<T, WagParseError>;Any parse will either return the node we are trying to parse, or a WagParseError.
pub enum ParseResult<T> {
Ok(T),
Err(WagParseError),
}