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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".