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.
Required Methods§
fn kind() -> RuntimeValueKindwhere
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".