Expand description
Error types for the cstorage library.
This module defines the error types used throughout the library. All operations
that can fail return a Result<T> which is an alias for Result<T, StorageError>.
§Error Categories
Errors are organized into several categories:
- Storage errors:
RootNotFound,InvalidStorage - Entity errors:
LayerNotFound,ImageNotFound - Link resolution:
LinkReadError - Tar-split processing:
TarSplitError - System errors:
Io,JsonParse
Enums§
- Storage
Error - Error types for storage operations.
Type Aliases§
- Result
- Result type alias for operations that may return a StorageError.