pub trait ProtocolInserter<P: ProtocolType, N> {
    fn insert<R: ReplicateSafe<P>>(&mut self, entity: &N, component: R);
}

Required methods

Implementors