//! Error types for the slowrx crate.
//!
//! Library-only failure modes — anything I/O or codec-shaped belongs to
//! the caller (CLI, examples, integration tests use their own wrappers).
/// Crate-wide error type.
/// Convenient `Result` alias used throughout the crate.
pub type Result<T> = Result;