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
```rust
fn regular_result() -> Result
fn hatch_result() -> Result
```
If the function succeeds, an Ok Result is returned using ? operator.
If it fails, the expression evaluates to the error value.
```rust
fn operationthatmight_fail() -> HatchResult
fn hatchresult() -> Result
```