pub struct LazyBindSymbol {
pub dylib_ordinal: usize,
pub segment_index: usize,
pub name: String,
pub flags: BindSymbolFlags,
pub symbol_offset: isize,
}Expand description
The mach lazy binding symbol information
Fields§
§dylib_ordinal: usize§segment_index: usize§name: String§flags: BindSymbolFlags§symbol_offset: isizeTrait Implementations§
Source§impl Clone for LazyBindSymbol
impl Clone for LazyBindSymbol
Source§fn clone(&self) -> LazyBindSymbol
fn clone(&self) -> LazyBindSymbol
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LazyBindSymbol
impl Debug for LazyBindSymbol
Source§impl Default for LazyBindSymbol
impl Default for LazyBindSymbol
Source§fn default() -> LazyBindSymbol
fn default() -> LazyBindSymbol
Returns the “default value” for a type. Read more
Source§impl PartialEq for LazyBindSymbol
impl PartialEq for LazyBindSymbol
impl StructuralPartialEq for LazyBindSymbol
Auto Trait Implementations§
impl Freeze for LazyBindSymbol
impl RefUnwindSafe for LazyBindSymbol
impl Send for LazyBindSymbol
impl Sync for LazyBindSymbol
impl Unpin for LazyBindSymbol
impl UnwindSafe for LazyBindSymbol
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