pub struct JumpTable<'a> { /* private fields */ }
Implementations§
Source§impl<'a> JumpTable<'a>
impl<'a> JumpTable<'a>
pub fn is_empty(&self) -> bool
pub fn len(&self) -> u32
pub fn get_by_address(&self, address: u32) -> Option<ProgramCounter>
pub fn get_by_index(&self, index: u32) -> Option<ProgramCounter>
pub fn iter(&self) -> JumpTableIter<'a> ⓘ
Trait Implementations§
Source§impl<'a> IntoIterator for &'a JumpTable<'a>
impl<'a> IntoIterator for &'a JumpTable<'a>
Source§impl<'a> IntoIterator for JumpTable<'a>
impl<'a> IntoIterator for JumpTable<'a>
impl<'a> Copy for JumpTable<'a>
Auto Trait Implementations§
impl<'a> Freeze for JumpTable<'a>
impl<'a> RefUnwindSafe for JumpTable<'a>
impl<'a> Send for JumpTable<'a>
impl<'a> Sync for JumpTable<'a>
impl<'a> Unpin for JumpTable<'a>
impl<'a> UnwindSafe for JumpTable<'a>
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