Skip to main content

Module error

Module error 

Source
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§

SanitizeError
All errors that can occur within the sanitization engine.

Type Aliases§

Result