pub trait InterfaceConfigData: Send + Any { // Required method fn into_any(self: Box<Self>) -> Box<dyn Any>; }
Opaque interface config data. Each factory downcasts to its concrete type.