Macros§
- unwrap
- A replacement for calling
unwrap()on aResultorOption. - unwrap_
err - A replacement for calling
unwrap_err()on aResult.
Traits§
- Verbose
Unwrap - Types which can be unwrapped and which may want to print a verbose error message when they are
unwrapped incorrectly. This trait is implemented for
ResultandOptionas a replacement for their inherentunwrapmethods. This trait is intended to be used via this crate’sunwrap!macro. - Verbose
Unwrap Err - Types which can be unwrapped into an error type and which may want to print a verbose error
message when they are unwrapped incorrectly. This trait is implemented for
Resultas a replacement for its inherentunwrap_err. This trait is intended to be used via this crate’sunwrap_err!macro.