pub type NodesResult<'a> = Result<Nodes<'a>, ParserError>;
pub enum NodesResult<'a> { Ok(Vec<Box<Node<'a>>>), Err(ParserError), }
Contains the success value
Contains the error value