use lazy_static::lazy_static;
use std::collections::HashMap;
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub(crate) enum FieldType {
Encoded,
Numeric,
NumericDec,
NumericHex,
NumericOct,
}
lazy_static! {
pub(crate) static ref EVENT_IDS: HashMap<&'static[u8], u32> = {
let els: &[(&str, u32)] = &[ /* @EVENT_CONST@ */ ];
let mut hm = HashMap::with_capacity(els.len());
for (name, value) in els {
hm.insert(name.as_bytes(), *value);
}
hm
};
pub(crate) static ref EVENT_NAMES: HashMap<u32, &'static str> = {
let els: &[(&str, u32)] = &[ /* @EVENT_CONST@ */ ];
let mut hm = HashMap::with_capacity(els.len());
for (name, value) in els {
hm.insert(*value, *name);
}
hm
};
pub(crate) static ref FIELD_TYPES: HashMap<&'static[u8],FieldType> = {
let els: &[(&str, FieldType)] = &[ /* @FIELD_TYPES@ */ ];
let mut hm = HashMap::with_capacity(els.len());
for (name, typ) in els {
hm.insert(name.as_bytes(), *typ);
}
hm
};
}