qubit-codec 0.4.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.
 *
 ******************************************************************************/

//! Common codec traits and buffer conversion primitives.
//!
//! Importing this module brings the domain-neutral codec traits, convenience
//! encoder/decoder traits, byte-order markers, and progress-oriented transcoder
//! types into scope.

pub use crate::{
    BigEndian,
    ByteOrder,
    ByteOrderSpec,
    Codec,
    Decoder,
    Encoder,
    LittleEndian,
    TranscodeProgress,
    TranscodeStatus,
    Transcoder,
};