Struct assembly_xml::localization::LocaleNode[][src]

pub struct LocaleNode {
    pub value: Option<String>,
    pub int_children: BTreeMap<u32, LocaleNode>,
    pub str_children: BTreeMap<String, 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<String, LocaleNode>

The (optional) children with a non-numeric key

Implementations

Return all keys that correspond to this node

This returns a flat map of locale values

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.