Struct lief::macho::commands::function_variants::RuntimeTableEntry
pub struct RuntimeTableEntry<'a> { /* private fields */ }
Expand description
This class exposes information about a given implementation.
Implementations§
§impl RuntimeTableEntry<'_>
impl RuntimeTableEntry<'_>
pub fn implementation(&self) -> u32
pub fn implementation(&self) -> u32
The relative address of the implementation or an index if RuntimeTableEntry::another_table
is set.
pub fn another_table(&self) -> bool
pub fn another_table(&self) -> bool
Indicates whether RuntimeTableEntry::implementation
refers to an entry in another runtime table,
rather than a direct function implementation address.
pub fn flag_bit_nums(&self) -> &[u8] ⓘ
pub fn flag_bit_nums(&self) -> &[u8] ⓘ
The flagBitNums
value as a slice of bytes
pub fn flags(&self) -> Vec<Flag>
pub fn flags(&self) -> Vec<Flag>
Return the interpreted RuntimeTableEntry::flag_bit_nums
Trait Implementations§
§impl Debug for RuntimeTableEntry<'_>
impl Debug for RuntimeTableEntry<'_>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for RuntimeTableEntry<'a>
impl<'a> !Send for RuntimeTableEntry<'a>
impl<'a> !Sync for RuntimeTableEntry<'a>
impl<'a> Unpin for RuntimeTableEntry<'a>
impl<'a> !UnwindSafe for RuntimeTableEntry<'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