Skip to main content

Module errors

Module errors 

Source
Expand description

Typed error handling for the quantize-rs library.

All public API functions return Result<T>, which uses QuantizeError as the error type. The CLI binary converts these into anyhow::Error automatically via the blanket From<E: std::error::Error> impl, so callers that prefer anyhow can use ? without .map_err().

Enums§

QuantizeError
Errors produced by the quantize-rs library.

Type Aliases§

Result
Result type alias used throughout the quantize-rs public API.