Expand description
Error types for tsafe-core.
All fallible public functions return SafeResult<T>, which is an alias for
Result<T, SafeError>. Callers can match on specific variants for structured
error handling or surface the Display message (derived by thiserror) for
user-facing output.
Enums§
- Safe
Error - Top-level error type for all tsafe-core operations.
Type Aliases§
- Safe
Result - Convenience alias for
Result<T, SafeError>.