pub type NodeIsAlternateForResult = Result<bool, i32>;
enum NodeIsAlternateForResult { Ok(bool), Err(i32), }
Contains the success value
Contains the error value