Expand description
Unified error types for the sanitization engine.
All fallible operations in the crate return Result<T>, which is an
alias for std::result::Result<T, SanitizeError>.
Errors are categorised by subsystem (IoError, SecretsError,
ArchiveError, …) so callers can match on the variant to decide
whether to retry, skip, or abort. The thiserror derive keeps
display messages actionable and grep-friendly.
Enums§
- Sanitize
Error - All errors that can occur within the sanitization engine.