//! Output format backends.
//!
//! Post-ADR-033 P6: the legacy two-pass `gguf.rs` + `safetensors_out.rs`
//! backends were retired alongside the convert/calibrate/quality stack.
//! Only the seek-back GGUF writer subdirectory (`gguf/{writer,types}.rs`)
//! survives; it is consumed by `crate::convert::orchestrator`.
//!
//! `BackendError` is the typed error surface used by both the legacy
//! (now-deleted) trait callers and the new convert-v2 writer paths.
//! It is kept here as a shared module to host that error type.
use Error;
/// Errors from output backend operations.