This library provides alternatives to the standard .unwrap
* methods on Result
and Option
that don't require Debug
to be implemented on the unexpected variant:
```rust use assertpanic::assertpanic; use debugless_unwrap::*;
struct T;
let some = Some(T);
let none = Option::
none.debuglessunwrapnone(); ok.debuglessunwrap(); err.debuglessunwrap_err();
assertpanic!(some.debuglessunwrapnone()); assertpanic!({ err.debuglessunwrap(); }); assertpanic!({ ok.debuglessunwraperr(); }); ```