qubit-value 0.6.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, Qubit Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! # 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};