pub type Result<T, E = ExonError> = Result<T, E>;
Result type for Exon.
enum Result<T, E = ExonError> { Ok(T), Err(E), }
Contains the success value
Contains the error value