Struct lief::macho::commands::dyld_export_trie::DyldExportsTrie
pub struct DyldExportsTrie<'a> { /* private fields */ }
Expand description
Structure that represents the LC_DYLD_EXPORTS_TRIE
command
In recent Mach-O binaries, this command replace the DyldInfo export trie buffer
Implementations§
§impl DyldExportsTrie<'_>
impl DyldExportsTrie<'_>
pub fn data_offset(&self) -> u32
pub fn data_offset(&self) -> u32
Offset of the LC_DYLD_EXPORTS_TRIE
. This offset should point in the
__LINKEDIT
segment
pub fn exports(&self) -> ExportInfos<'_> ⓘ
pub fn exports(&self) -> ExportInfos<'_> ⓘ
Iterator over the crate::macho::ExportInfo
associated with this command
Trait Implementations§
§impl Command for DyldExportsTrie<'_>
impl Command for DyldExportsTrie<'_>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DyldExportsTrie<'a>
impl<'a> !Send for DyldExportsTrie<'a>
impl<'a> !Sync for DyldExportsTrie<'a>
impl<'a> Unpin for DyldExportsTrie<'a>
impl<'a> UnwindSafe for DyldExportsTrie<'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