pub trait TopicProviderAny: Send + Sync {
// Required method
fn topic_any(&self, value: &dyn Any) -> Option<String>;
}Expand description
Type-erased topic provider trait (internal)
Allows storing providers for different types in a unified collection.
The concrete type is recovered via Any::downcast_ref() at runtime.