Hatch Result

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

Examples

Difference between regular result and HatchResult

```rust fn regular_result() -> Result { let value = Ok(4)?; Ok(value) }

fn hatch_result() -> Result { let err = HatchResult(Ok(3))?; Err(err) }
```

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 { let result = // ... HatchResult(result) }

fn hatchresult() -> Result { let error = operationthatmightfail()?; panic!("There was an error: {error}"); }
```