pub type BoxValue<V> = Value<Box<[MaybeUninit<u8>]>, V>;
pub struct BoxValue<V> { /* private fields */ }
Convert this value into its destructured parts.
The caller must insure that the memory allocated by the returned bytes is freed.