Skip to main content

InterfaceConfigData

Trait InterfaceConfigData 

Source
pub trait InterfaceConfigData: Send + Any {
    // Required method
    fn into_any(self: Box<Self>) -> Box<dyn Any>;
}
Expand description

Opaque interface config data. Each factory downcasts to its concrete type.

Required Methods§

Source

fn into_any(self: Box<Self>) -> Box<dyn Any>

Implementors§

Source§

impl<T: Send + 'static> InterfaceConfigData for T