pub trait RuntimeStorageNamespaceOps: Send + Sync {
// Required methods
fn namespace_id(&self) -> &RuntimeNamespaceId;
fn list_tables(&self) -> Vec<String>;
fn as_any(&self) -> &dyn Any;
}Expand description
Helper trait for storing runtime namespaces behind trait objects with basic inspection support.