Struct gimli::read::EntriesTreeNode
source · pub struct EntriesTreeNode<'abbrev, 'unit, 'tree, R: Reader> { /* private fields */ }
Expand description
A node in the Debugging Information Entry tree.
The root node of a tree can be obtained
via EntriesTree::root
.
Implementations§
source§impl<'abbrev, 'unit, 'tree, R: Reader> EntriesTreeNode<'abbrev, 'unit, 'tree, R>
impl<'abbrev, 'unit, 'tree, R: Reader> EntriesTreeNode<'abbrev, 'unit, 'tree, R>
sourcepub fn entry(&self) -> &DebuggingInformationEntry<'abbrev, 'unit, R>
pub fn entry(&self) -> &DebuggingInformationEntry<'abbrev, 'unit, R>
Returns the current entry in the tree.
sourcepub fn children(self) -> EntriesTreeIter<'abbrev, 'unit, 'tree, R>
pub fn children(self) -> EntriesTreeIter<'abbrev, 'unit, 'tree, R>
Create an iterator for the children of the current entry.
The current entry can no longer be accessed after creating the iterator.