pub trait RuntimeValueDecode {
// Required method
fn from_value(value: &Value) -> Option<Self>
where Self: Sized;
}Expand description
RuntimeValueDecode
Narrow runtime reconstruction boundary for typed value surfaces that can be
rebuilt from the internal Value union.
This is the decode-side owner used by generated wrappers and shared helper
paths that only need one-way typed reconstruction.
It is runtime-only and MUST NOT be used for persisted-row codecs,
storage-key decoding, or any other persistence/storage encoding path.