pub type NodeResult<T> = Result<T, NodeError>;
Alias for results returned by node handlers.
pub enum NodeResult<T> { Ok(T), Err(NodeError), }
Contains the success value
Contains the error value