debugless-unwrap

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::*;

[derive(Copy, Clone)]

struct T;

let some = Some(T); let none = Option::::None; let ok = Result::::Ok(T); let err = Result::::Err(T);

none.debuglessunwrapnone(); ok.debuglessunwrap(); err.debuglessunwrap_err();

assertpanic!(some.debuglessunwrapnone()); assertpanic!({ err.debuglessunwrap(); }); assertpanic!({ ok.debuglessunwraperr(); }); ```

Changelog