Expand description
Error types for DNF .repo file parsing, validation, and variable expansion.
This module defines the top-level Error enum (via thiserror) that
aggregates all domain-specific error types in the library:
ParseError— INI parsing failures (malformed sections, missing=, etc.)ParseBoolError— invalid boolean values like"maybe"ExpandError— variable substitution failures (unknown name, depth, syntax)
The Result type alias is a convenience for Result<T, Error>.
Structs§
- Parse
Bool Error - Error when parsing a boolean value from a
.repofile option fails.
Enums§
- Error
- Top-level error type for the library.
- Expand
Error - Error when expanding DNF variables fails.
- Parse
Error - Error when parsing a
.repofile fails.
Type Aliases§
- Result
- Result type alias for convenience.