Expand description
Error handling facade. Error handling module for willbe.
Modules§
- anyhow
- github crates-io docs-rs
- exposed
- Exposed namespace of the module.
- orphan
- Orphan namespace of the module.
- own
- Own namespace of the module.
- prelude
- Prelude to use essentials:
use my_module ::prelude :: *. - thiserror
- github crates-io docs-rs
- typed
- Typed error handling, a facade for
thiserror. Typed error handling, a facade forthiserror. - untyped
- Untyped error handling, a facade for
anyhow. Untyped error handling, a facade foranyhow.
Structs§
- Error
- The
Errortype, a wrapper around a dynamic error type.
Enums§
- Option
- The
Optiontype. See the module level documentation for more. - Result
Resultis a type that represents either success (Ok) or failure (Err).
Traits§
- ErrWith
- Trait to add extra context or information to an error.
Type Aliases§
- Result
With Report - A type alias for a
Resultthat contains an error which is a tuple of a report and an original error.