pub trait MetaCapability {
// Required method
fn key(&self) -> &'static str;
// Provided method
fn value(&self) -> Value { ... }
}Expand description
Trait for capabilities stored in the _meta.symposium object.
Capabilities are key-value pairs that signal features or context to components in the proxy chain. Implement this trait to define new capabilities.