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