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§
- Quantize
Error - Errors produced by the quantize-rs library.
Type Aliases§
- Result
- Result type alias used throughout the quantize-rs public API.