Trait InterfaceType
pub trait InterfaceType {
type Input;
type Output;
type Interface: Interface<Self::Input, Self::Output> + ?Sized;
// Required method
fn interface(&mut self) -> &mut Self::Interface;
}Expand description
An InterfaceType
Just placeholders