qubit-text-codec 0.1.0

Buffer-oriented text encoding and decoding utilities for Rust
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Common imports for Qubit Text Codec callers.

pub use crate::{
    Ascii,
    AsciiCodec,
    ByteOrder,
    Charset,
    CharsetCodec,
    CharsetConvertError,
    CharsetConverter,
    CharsetDecodeError,
    CharsetDecodeErrorKind,
    CharsetDecodeResult,
    CharsetDecoder,
    CharsetEncodeError,
    CharsetEncodeErrorKind,
    CharsetEncodeResult,
    CharsetEncoder,
    Coder,
    CoderProgress,
    CoderStatus,
    DecodeStatus,
    Latin1Codec,
    MalformedAction,
    Unicode,
    UnicodeBom,
    UnmappableAction,
    Utf8,
    Utf8Codec,
    Utf16,
    Utf16ByteCodec,
    Utf16U16Codec,
    Utf32,
    Utf32ByteCodec,
    Utf32U32Codec,
};