pub type NeonResult<T> = Result<T, Throw>;
The result type for throwing APIs.
enum NeonResult<T> { Ok(T), Err(Throw), }
Contains the success value
Contains the error value