qubit-value 0.7.0

Type-safe value container framework with unified abstractions for single values, multi-values, and named values with complete serde support
Documentation
/***************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! # Value Module
//!
//! Public entry for the single-value container implementation.

#[allow(clippy::module_inception)]
mod value;
mod value_accessors;
mod value_constructor;
mod value_converter;
mod value_converters;
mod value_getter;
mod value_setter;

pub use value::Value;

// Public implementation details used by `Value` generic method bounds.
#[doc(hidden)]
pub use value::{
    ValueConstructor,
    ValueConverter,
    ValueGetter,
    ValueSetter,
};