qubit-codec 0.5.0

Core codec traits and buffer conversion primitives for Rust
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Generic conversion error used by codec converter adapters.

use thiserror::Error;

use super::{
    codec_decode_error::CodecDecodeError,
    codec_encode_error::CodecEncodeError,
};

/// Error reported by codec-backed buffered converters.
///
/// A converter first decodes source units into a logical value and then encodes
/// that value into target units. This error keeps those two failure sources
/// explicit instead of hiding them behind an implicit conversion. The encode
/// branch wraps [`CodecEncodeError`] so callers can distinguish codec encode
/// failures from adapter-level output-index errors.
#[derive(Clone, Copy, Debug, Eq, Error, Hash, PartialEq)]
pub enum CodecConvertError<D, E> {
    /// Source-unit decoding failed.
    #[error("codec conversion decode error: {source}")]
    Decode {
        /// Decode error reported by the decoder side of the converter.
        #[source]
        source: CodecDecodeError<D>,
    },

    /// Target-unit encoding failed.
    #[error("codec conversion encode error: {source}")]
    Encode {
        /// Encode error reported by the encoder side of the converter.
        #[source]
        source: CodecEncodeError<E>,
    },
}

impl<D, E> CodecConvertError<D, E> {
    /// Creates a conversion error from a decode-side failure.
    ///
    /// # Parameters
    ///
    /// - `source`: Decode error reported while reading source units.
    ///
    /// # Returns
    ///
    /// Returns a decode-side conversion error.
    #[must_use]
    #[inline(always)]
    pub const fn decode(source: CodecDecodeError<D>) -> Self {
        Self::Decode { source }
    }

    /// Creates a conversion error from an encode-side failure.
    ///
    /// # Parameters
    ///
    /// - `source`: Encode error reported while writing target units.
    ///
    /// # Returns
    ///
    /// Returns an encode-side conversion error.
    #[must_use]
    #[inline(always)]
    pub const fn encode(source: CodecEncodeError<E>) -> Self {
        Self::Encode { source }
    }
}