debug_unwrap

Description

This library adds the DebugUnwrap extension trait that adds the method debugunwrap to the Option and Result types. It does exactly the same thing as the normal unwrap methods, but won't exist when compiling without debugassertions enabled (i.e. when not compiling in Debug mode).

Library Features

There is also three other aliases that all have there respective library features of the same name to enable them: - out (enabled by default) - o - peel

You can also use the deprecate feature which makes the functions deprecated on release mode instead of flat out not existing, so that your code will compile but with warnings.