Struct gimli::read::unit::EntriesTree

source ·
pub struct EntriesTree<'abbrev, 'unit, R>where
    R: Reader,{
    root: R,
    unit: &'unit UnitHeader<R>,
    abbreviations: &'abbrev Abbreviations,
    input: R,
    entry: Option<DebuggingInformationEntry<'abbrev, 'unit, R>>,
    depth: isize,
}
Expand description

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(())
}

Fields§

§root: R§unit: &'unit UnitHeader<R>§abbreviations: &'abbrev Abbreviations§input: R§entry: Option<DebuggingInformationEntry<'abbrev, 'unit, R>>§depth: isize

Implementations§

source§

impl<'abbrev, 'unit, R: Reader> EntriesTree<'abbrev, 'unit, R>

source

fn new( root: R, unit: &'unit UnitHeader<R>, abbreviations: &'abbrev Abbreviations ) -> Self

source

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

Returns the root node of the tree.

source

fn next(&mut self, depth: isize) -> Result<bool>

Move the cursor to the next entry at the specified depth.

Requires depth <= self.depth + 1.

Returns true if successful.

Trait Implementations§

source§

impl<'abbrev, 'unit, R> Clone for EntriesTree<'abbrev, 'unit, R>where R: Reader + Clone,

source§

fn clone(&self) -> EntriesTree<'abbrev, 'unit, R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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: UnwindSafe + RefUnwindSafe, <R as Reader>::Offset: UnwindSafe + RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.