pub type NextResult<T> = Result<AgdaResult<T>>;
Return type of next_* functions.
next_*
pub enum NextResult<T> { Ok(Result<T, String>), Err(Error), }
Contains the success value
Contains the error value