Expand description
Shared error types for the Gust library.
Library code uses [Error] (a thiserror enum) so callers can match on
specific failure modes. The binary wraps these with anyhow for human-
readable top-level reporting.
Enums§
- Error
- The top-level error type for all Gust library operations.
Type Aliases§
- Result
- Convenience alias for
Result<T, Error>.