pub struct Functions<'a> {
pub have_32_bit_addresses: bool,
pub undefined: HashSet<&'a str>,
pub defined: BTreeMap<u64, Function<'a>>,
}
Expand description
Functions found after analyzing an executable
Fields§
§have_32_bit_addresses: bool
Whether the addresses of these functions are 32-bit or 64-bit
undefined: HashSet<&'a str>
“undefined” symbols, symbols that need to be dynamically loaded
defined: BTreeMap<u64, Function<'a>>
“defined” symbols, symbols with known locations (addresses)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Functions<'a>
impl<'a> RefUnwindSafe for Functions<'a>
impl<'a> Send for Functions<'a>
impl<'a> Sync for Functions<'a>
impl<'a> Unpin for Functions<'a>
impl<'a> UnwindSafe for Functions<'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