pub trait InterfaceImplementation {
    type InterfaceTypeDefinition: InterfaceTypeDefinition;

    // Required method
    fn interface(&self) -> &Self::InterfaceTypeDefinition;
}

Required Associated Types§

Required Methods§

Implementors§