pub type Result<T, E> = Result<T, Trace<E>>;
Type-alias to make it easier to slot in tracing of errors.
pub enum Result<T, E> { Ok(T), Err(Trace<E>), }
Contains the success value
Contains the error value