messagepack_serde/value/
mod.rs

1//! Dynamic value helpers for MessagePack.
2//!
3//! This module provides a dynamic representation of MessagePack data and
4//! utility adapters for extension types.
5
6#[cfg(feature = "alloc")]
7mod value_ref;
8#[cfg(feature = "alloc")]
9pub use value_ref::ValueRef;
10
11#[cfg(feature = "alloc")]
12mod value_owned;
13#[cfg(feature = "alloc")]
14pub use value_owned::Value;
15
16pub(crate) mod extension;
17pub use extension::{ext_fixed, ext_ref, timestamp32, timestamp64, timestamp96};
18mod number;
19pub use number::Number;