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