[][src]Struct twiggy_ir::ItemsBuilder

pub struct ItemsBuilder { /* fields omitted */ }

Build up a a set of Items.

Methods

impl ItemsBuilder[src]

pub fn new(size: u32) -> ItemsBuilder[src]

Construct a new builder, with the given size.

pub fn add_item(&mut self, item: Item) -> Id[src]

Add the given item to to the graph and return the Id that it was assigned.

pub fn add_root(&mut self, item: Item) -> Id[src]

Add the given item to the graph as a root and return the Id that it was assigned.

pub fn add_edge(&mut self, from: Id, to: Id)[src]

Add an edge between the given keys that have already been parsed into items.

Add a range of static data and the Id that defines it.

pub fn get_data(&self, offset: u32) -> Option<Id>[src]

Locate the data section defining memory at the given offset.

pub fn size_added(&self) -> u32[src]

Return the size of all added items so far

pub fn finish(self) -> Items[src]

Finish building the IR graph and return the resulting Items.

Trait Implementations

impl Debug for ItemsBuilder[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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