pub type ExecResult<T, E> = Result<T, ExecError<E>>;
Shorthand for a Result where the error type is a ExecError.
Result
ExecError
pub enum ExecResult<T, E> { Ok(T), Err(ExecError<E>), }
Contains the success value
Contains the error value