1 2 3 4 5 6 7
use std::collections::HashMap; pub type TextReferenceKey = String; pub type TextReference = String; pub type TextReferenceMap = HashMap<TextReferenceKey, TextReference>;