Struct assembly_xml::localization::LocaleNode
source · pub struct LocaleNode {
pub value: Option<String>,
pub int_children: BTreeMap<u32, LocaleNode>,
pub str_children: BTreeMap<Key, LocaleNode>,
}
Expand description
A node in the locale tree
Fields§
§value: Option<String>
The translation at the current node
int_children: BTreeMap<u32, LocaleNode>
The (optional) children with a numeric key
str_children: BTreeMap<Key, LocaleNode>
The (optional) children with a non-numeric key
Implementations§
Trait Implementations§
source§impl Debug for LocaleNode
impl Debug for LocaleNode
source§impl Default for LocaleNode
impl Default for LocaleNode
source§fn default() -> LocaleNode
fn default() -> LocaleNode
Returns the “default value” for a type. Read more