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
Auto Trait Implementations§
impl Freeze for LocaleNode
impl RefUnwindSafe for LocaleNode
impl Send for LocaleNode
impl Sync for LocaleNode
impl Unpin for LocaleNode
impl UnwindSafe for LocaleNode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more