Expand description
Formatting utilities for error chains.
Structs§
- Inline
Error - An implementation of
Box<dyn std::error::Error>that stores the error payload inline, avoiding dynamic memory allocation. This has several practical drawbacks:
Enums§
Functions§
- format
- Format the entire error chain for
errby first callingerr.to_string()and then by walking the error’s source tree.