pub type NodeResult = Result<NodeResponse>;
pub enum NodeResult { Ok(NodeResponse), Err(Error), }
Contains the success value
Contains the error value