A wrapper on a result that returns on Ok instead of Err when ? operator is used this allows to exit a function with an Ok result if a computation has succeeded, or handle the error inside the function if it has failed; Hatch comes from escape hatch, in the sense that the Ok result escapes early It's tough to come up with good names for things and I'll take suggestions, just open an issue!
The tests are located in lib.rs
Difference between regular result and HatchResult
```rust
fn regular_result() -> Result
fn hatch_result() -> Result
```
Exiting early from a function after success of a fallible function. If the function succeeds, an Ok Result is returned. If it fails, the expression evaluates to the error value.
```rust
fn operationthatmight_fail() -> HatchResult
fn hatchresult() -> Result
```