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