pub trait ComponentProtocol {
    type Construction: ComponentConstruction;
    type Serialization: ComponentSerialization;
}

Required Associated Types

Implementors