pub trait RuntimeValueMeta {
// Required method
fn kind() -> RuntimeValueKind
where Self: Sized;
}Expand description
Schema/queryability metadata for one typed runtime value surface.
Required Methods§
Sourcefn kind() -> RuntimeValueKindwhere
Self: Sized,
fn kind() -> RuntimeValueKindwhere
Self: Sized,
Return the planner affordance category for this value type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".