pub trait NetEntityHandleConverter {
    // Required methods
    fn handle_to_net_entity(&self, entity_handle: &EntityHandle) -> NetEntity;
    fn net_entity_to_handle(
        &self,
        net_entity: &NetEntity
    ) -> Result<EntityHandle, EntityDoesNotExistError>;
}

Required Methods§

Implementors§