[][src]Struct gimli::read::EntriesTree

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

The state information for a tree view of the Debugging Information Entries.

The EntriesTree can be used to recursively iterate through the DIE tree, following the parent/child relationships. The EntriesTree contains shared state for all nodes in the tree, avoiding any duplicate parsing of entries during the traversal.

Example Usage

let unit = get_some_unit();
let abbrevs = get_abbrevs_for_unit(&unit);

let mut tree = unit.entries_tree(&abbrevs, None)?;
let root = tree.root()?;
process_tree(root)?;

fn process_tree<R>(mut node: gimli::EntriesTreeNode<R>) -> gimli::Result<()>
    where R: gimli::Reader
{
    {
        // Examine the entry attributes.
        let mut attrs = node.entry().attrs();
        while let Some(attr) = attrs.next()? {
        }
    }
    let mut children = node.children();
    while let Some(child) = children.next()? {
        // Recursively process a child.
        process_tree(child);
    }
    Ok(())
}

Implementations

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

pub fn root<'me>(
    &'me mut self
) -> Result<EntriesTreeNode<'abbrev, 'unit, 'me, R>>
[src]

Returns the root node of the tree.

Trait Implementations

impl<'abbrev, 'unit, R: Clone> Clone for EntriesTree<'abbrev, 'unit, R> where
    R: Reader
[src]

impl<'abbrev, 'unit, R: Debug> Debug for EntriesTree<'abbrev, 'unit, R> where
    R: Reader
[src]

Auto Trait Implementations

impl<'abbrev, 'unit, R> !RefUnwindSafe for EntriesTree<'abbrev, 'unit, R>

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

impl<'abbrev, 'unit, R> !Sync for EntriesTree<'abbrev, 'unit, R>

impl<'abbrev, 'unit, R> Unpin for EntriesTree<'abbrev, 'unit, R> where
    R: Unpin,
    <R as Reader>::Offset: Unpin

impl<'abbrev, 'unit, R> UnwindSafe for EntriesTree<'abbrev, 'unit, R> where
    R: RefUnwindSafe + UnwindSafe,
    <R as Reader>::Offset: RefUnwindSafe + UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.