pub type AgdaResult<T> = Result<T, String>;
An Agda response that is either something good or some error.
pub enum AgdaResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value