Expand description
A library for enhanced error handling with frame capture and context.
This library provides a mechanism to manually capture error contexts (frames) and display them in a structured manner. The main components include:
Structs§
- Error
- A wrapper around a generic error that captures the location and additional context.
- Frame
- A struct representing a captured frame during error handling.
Traits§
- Error
Ext - Extension trait for errors to convert them into tracked
Error<E>types. - Result
Ext - Extension trait for
Resultto add location tracking when converting errors.