pub struct DyldInfo<'a> { /* private fields */ }
Expand description
Structure that represents the LC_DYLD_INFO
and LC_DYLD_INFO_ONLY
commands
Implementations§
§impl<'a> DyldInfo<'a>
impl<'a> DyldInfo<'a>
pub fn rebase_opcodes(&self) -> &[u8] ⓘ
pub fn rebase_opcodes(&self) -> &[u8] ⓘ
Return Rebase’s opcodes as a slice of bytes
pub fn bind_opcodes(&self) -> &[u8] ⓘ
pub fn bind_opcodes(&self) -> &[u8] ⓘ
Return regular binding’s opcodes as a slice of bytes
pub fn weak_bind_opcodes(&self) -> &[u8] ⓘ
pub fn weak_bind_opcodes(&self) -> &[u8] ⓘ
Return weak binding’s opcodes as a slice of bytes
pub fn lazy_bind_opcodes(&self) -> &[u8] ⓘ
pub fn lazy_bind_opcodes(&self) -> &[u8] ⓘ
Return lazy binding’s opcodes as a slice of bytes
pub fn export_trie(&self) -> &[u8] ⓘ
pub fn export_trie(&self) -> &[u8] ⓘ
Return the raw export trie as a slice of bytes
pub fn bindings(&self) -> BindingInfos<'_> ⓘ
pub fn bindings(&self) -> BindingInfos<'_> ⓘ
Return an iterator over the crate::macho::BindingInfo::Dyld
associated with this
command
pub fn exports(&self) -> ExportInfos<'_> ⓘ
pub fn exports(&self) -> ExportInfos<'_> ⓘ
Return an iterator over the crate::macho::ExportInfo
associated with this command
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DyldInfo<'a>
impl<'a> !Send for DyldInfo<'a>
impl<'a> !Sync for DyldInfo<'a>
impl<'a> Unpin for DyldInfo<'a>
impl<'a> UnwindSafe for DyldInfo<'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