[][src]Struct gimli::read::EntriesTreeNode

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

A node in the Debugging Information Entry tree.

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

Methods

impl<'abbrev, 'unit, 'tree, R: Reader> EntriesTreeNode<'abbrev, 'unit, 'tree, R>[src]

pub fn entry(&self) -> &DebuggingInformationEntry<'abbrev, 'unit, R>[src]

Returns the current entry in the tree.

pub fn children(self) -> EntriesTreeIter<'abbrev, 'unit, 'tree, R>[src]

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 + Reader> Debug for EntriesTreeNode<'abbrev, 'unit, 'tree, R>[src]

Auto Trait Implementations

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

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

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

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

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

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.