Struct lief::macho::binding_info::Dyld
pub struct Dyld<'a> { /* private fields */ }
Expand description
This structure represents a binding operation coming from binding bytecode
of LC_DYLD_INFO
Implementations§
§impl Dyld<'_>
impl Dyld<'_>
pub fn binding_class(&self) -> BINDING_CLASS
pub fn binding_class(&self) -> BINDING_CLASS
Class of the binding (weak, lazy, …)
pub fn binding_type(&self) -> BIND_TYPES
pub fn binding_type(&self) -> BIND_TYPES
Type of the binding. Most of the times it should be BIND_TYPES::POINTER
pub fn is_non_weak_definition(&self) -> bool
pub fn original_offset(&self) -> u64
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Dyld<'a>
impl<'a> !Send for Dyld<'a>
impl<'a> !Sync for Dyld<'a>
impl<'a> Unpin for Dyld<'a>
impl<'a> UnwindSafe for Dyld<'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