pub struct ConfigNode {
pub children: HashMap<String, ConfigNodeValue>,
}Expand description
Represents a node in the ConfigNode tree
Fields§
§children: HashMap<String, ConfigNodeValue>All the direct children of this node
Trait Implementations§
Source§impl Clone for ConfigNode
impl Clone for ConfigNode
Source§fn clone(&self) -> ConfigNode
fn clone(&self) -> ConfigNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigNode
impl Debug for ConfigNode
Source§impl Default for ConfigNode
impl Default for ConfigNode
Source§fn default() -> ConfigNode
fn default() -> ConfigNode
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConfigNode
impl PartialEq for ConfigNode
impl Eq for ConfigNode
impl StructuralPartialEq for ConfigNode
Auto Trait Implementations§
impl Freeze for ConfigNode
impl RefUnwindSafe for ConfigNode
impl Send for ConfigNode
impl Sync for ConfigNode
impl Unpin for ConfigNode
impl UnwindSafe for ConfigNode
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