Simple macro for expressing Result-returning assertions.
```rust use rassert::rassert;
enum MyError { NotAnswerToLife, }
struct SomeOutput;
pub fn foo(input: usize) -> Result
let output = ...;
Ok(output)
} ```
Because the alternative is rather ugly and does not obviously express that the expression is a precondition.
```rust enum MyError { NotAnswerToLife, }
struct SomeOutput;
pub fn foo(input: usize) -> Result
let output = ...;
Ok(output)
} ```
I found myself just copy-pasting the same rassert macro over and over in my projects, so might as well put it on Cargo.