// This is free and unencumbered software released into the public domain.
usesuper::{Value, ValueType};/// A sum type that can hold values of any type, including `Any`.
pubtypeAnyValue=Value<alloc::boxed::Box<dyn core::any::Any>>;/// A type discriminator for an [AnyValue].
pubtypeAnyValueType= ValueType;