[]Struct symbolic::debuginfo::dwarf::gimli::EntriesTreeNode

pub struct EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
    R: Reader
{ /* fields omitted */ }

A node in the Debugging Information Entry tree.

The root node of a tree can be obtained via EntriesTree::root.

Implementations

impl<'abbrev, 'unit, 'tree, R> EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
    R: Reader

pub fn entry(
    &self
) -> &DebuggingInformationEntry<'abbrev, 'unit, R, <R as Reader>::Offset>

Returns the current entry in the tree.

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.

Trait Implementations

impl<'abbrev, 'unit, 'tree, R> Debug for EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
    R: Reader + Debug

Auto Trait Implementations

impl<'abbrev, 'unit, 'tree, R> !RefUnwindSafe for EntriesTreeNode<'abbrev, 'unit, 'tree, R>[src]

impl<'abbrev, 'unit, 'tree, R> Send for EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
    R: Send + Sync,
    <R as Reader>::Offset: Send + Sync
[src]

impl<'abbrev, 'unit, 'tree, R> !Sync for EntriesTreeNode<'abbrev, 'unit, 'tree, R>[src]

impl<'abbrev, 'unit, 'tree, R> Unpin for EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
    'abbrev: 'tree,
    'unit: 'tree, 
[src]

impl<'abbrev, 'unit, 'tree, R> !UnwindSafe for EntriesTreeNode<'abbrev, 'unit, 'tree, R>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.