Find a temporary solution to par into iter on an HashMap

Spoiler: Do not use an HashMap but drain it into a Vec
This commit is contained in:
Clément Renault
2024-09-02 19:39:48 +02:00
parent 9b7858fb90
commit bcb1aa3d22
12 changed files with 254 additions and 152 deletions

View File

@ -4,6 +4,8 @@ use serde::{Deserialize, Serialize};
use crate::FieldId;
mod global;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FieldsIdsMap {
names_ids: BTreeMap<String, FieldId>,