pub trait RuntimeValueMeta {
// Required method
fn kind() -> RuntimeValueKind
where Self: Sized;
}Expand description
RuntimeValueMeta
Schema/queryability metadata for one typed field value surface.
This stays separate from encode/decode conversion so metadata-only callers do not need
to depend on runtime Value conversion.