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