pub trait InterfaceConfig: Debug + Deserialize { // Required method fn to_interface(&self) -> Result<Box<dyn Interface + Send>, Error>; }
A data structure that can be deserialized and converted into an Interface.
Interface
Convert this InterfaceConfig into an Interface.
InterfaceConfig