valuand 0.0.1

The value to be carried.
Documentation
1
2
3
4
5
6
7
8
9
// This is free and unencumbered software released into the public domain.

use super::{Value, ValueType};

/// A sum type that can hold values of any type, including `Any`.
pub type AnyValue = Value<alloc::boxed::Box<dyn core::any::Any>>;

/// A type discriminator for an [AnyValue].
pub type AnyValueType = ValueType;