Skip to main content

Module errors

Module errors 

Source
Expand description

Error types for the tga-core crate.

All library code in this crate returns Result<T>, which is a type alias for std::result::Result<T, TgaError>. Errors implement std::error::Error via thiserror::Error so they integrate cleanly with both anyhow (in binary crates) and direct error matching.

Enums§

TgaError
Top-level error type for all tga-core operations.

Type Aliases§

Result
Crate-wide Result alias.