pub struct ComponentSubIterator { /* private fields */ }
Expand description
Sub-iterator for a Component. Keeps track of current location in a Component.
Implementations§
Source§impl ComponentSubIterator
impl ComponentSubIterator
Sourcepub fn new(
curr_mod: ModuleID,
num_mods: usize,
metadata: HashMap<ModuleID, Vec<(FunctionID, usize)>>,
skip_funcs: HashMap<ModuleID, Vec<FunctionID>>,
) -> Self
pub fn new( curr_mod: ModuleID, num_mods: usize, metadata: HashMap<ModuleID, Vec<(FunctionID, usize)>>, skip_funcs: HashMap<ModuleID, Vec<FunctionID>>, ) -> Self
Creates a new ComponentSubIterator
Sourcepub fn curr_mod_idx(&self) -> ModuleID
pub fn curr_mod_idx(&self) -> ModuleID
Gets the index of the current module in the component
Sourcepub fn curr_func_idx(&self) -> FunctionID
pub fn curr_func_idx(&self) -> FunctionID
Gets the index of the current function in the current module
Sourcepub fn curr_instr_idx(&self) -> usize
pub fn curr_instr_idx(&self) -> usize
Gets the index of the current instruction in the current function
Auto Trait Implementations§
impl Freeze for ComponentSubIterator
impl RefUnwindSafe for ComponentSubIterator
impl Send for ComponentSubIterator
impl Sync for ComponentSubIterator
impl Unpin for ComponentSubIterator
impl UnwindSafe for ComponentSubIterator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more