pub type CalyxResult<T> = Result<T, Error>;
Convience wrapper to represent success or meaningul compiler error.
enum CalyxResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value