hyperi-rustlib 2.8.2

There's plenty of sage advice out there about how to run Rust services in production at scale — config cascades, structured logging, masking secrets, multi-backend secrets management, Prometheus, OpenTelemetry, Kafka transports, tiered disk-spillover sinks, adaptive worker pools, graceful shutdown — but almost none of it as code you can just install and use. This is that code. Opinionated, drop-in, working out of the box. The patterns from blog posts, watercooler chats and beers with your Google mates as actual library — not a framework you assemble from twenty crates and 8 weeks of munging.
Documentation
// Project:   hyperi-rustlib
// File:      src/transport/error.rs
// Purpose:   Transport error types
// Language:  Rust
//
// License:   BUSL-1.1
// Copyright: (c) 2026 HYPERI PTY LIMITED

use std::fmt;

/// Result type for transport operations.
pub type TransportResult<T> = Result<T, TransportError>;

/// Errors that can occur during transport operations.
#[derive(Debug)]
pub enum TransportError {
    /// Configuration error (missing or invalid config).
    Config(String),

    /// Connection error (network, auth, etc.).
    Connection(String),

    /// Send operation failed.
    Send(String),

    /// Receive operation failed.
    Recv(String),

    /// Commit/acknowledge operation failed.
    Commit(String),

    /// Transport is closed or shutting down.
    Closed,

    /// Timeout waiting for operation.
    Timeout,

    /// Backpressure - transport cannot accept more messages.
    Backpressure,

    /// Internal transport error.
    Internal(String),

    /// Admin operation error (topic/partition management).
    Admin(String),
}

impl fmt::Display for TransportError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Config(msg) => write!(f, "transport config error: {msg}"),
            Self::Connection(msg) => write!(f, "transport connection error: {msg}"),
            Self::Send(msg) => write!(f, "transport send error: {msg}"),
            Self::Recv(msg) => write!(f, "transport receive error: {msg}"),
            Self::Commit(msg) => write!(f, "transport commit error: {msg}"),
            Self::Closed => write!(f, "transport closed"),
            Self::Timeout => write!(f, "transport operation timed out"),
            Self::Backpressure => write!(f, "transport backpressure"),
            Self::Internal(msg) => write!(f, "transport internal error: {msg}"),
            Self::Admin(msg) => write!(f, "transport admin error: {msg}"),
        }
    }
}

impl std::error::Error for TransportError {}

impl TransportError {
    /// Returns true if this error is recoverable (retry may succeed).
    #[must_use]
    pub fn is_recoverable(&self) -> bool {
        matches!(self, Self::Timeout | Self::Backpressure)
    }

    /// Returns true if this error indicates the transport is unusable.
    #[must_use]
    pub fn is_fatal(&self) -> bool {
        matches!(self, Self::Closed | Self::Config(_))
    }
}