pub struct ModuleSubIterator { /* private fields */ }
Expand description
Sub-iterator for a Module. Keeps track of current location in a Module.
Implementations§
Source§impl ModuleSubIterator
impl ModuleSubIterator
Sourcepub fn new(
metadata: Vec<(FunctionID, usize)>,
skip_funcs: Vec<FunctionID>,
) -> Self
pub fn new( metadata: Vec<(FunctionID, usize)>, skip_funcs: Vec<FunctionID>, ) -> Self
Creates a new ModuleSubIterator
pub fn get_curr_func(&self) -> (FunctionID, usize)
Sourcepub fn curr_loc(&self) -> (Location, bool)
pub fn curr_loc(&self) -> (Location, bool)
Returns the current Location in the Module as a Location and a bool value that says whether the location is at the end of the function.
Sourcepub fn has_next_function(&self) -> bool
pub fn has_next_function(&self) -> bool
Checks if there are functions left to visit
Auto Trait Implementations§
impl Freeze for ModuleSubIterator
impl RefUnwindSafe for ModuleSubIterator
impl Send for ModuleSubIterator
impl Sync for ModuleSubIterator
impl Unpin for ModuleSubIterator
impl UnwindSafe for ModuleSubIterator
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