pub struct LcDylib {
pub offset: u32,
pub timestamp: u32,
pub current_version: u32,
pub compatibility_version: u32,
pub name: Vec<u8>,
pub tail_padding: Vec<u8>,
}Expand description
Body of LC_LOAD_DYLIB / LC_ID_DYLIB / LC_LOAD_WEAK_DYLIB
/ LC_REEXPORT_DYLIB. The same 4-u32 dylib record followed by
the NUL-padded name string.
Fields§
§offset: u32§timestamp: u32§current_version: u32§compatibility_version: u32§name: Vec<u8>§tail_padding: Vec<u8>Implementations§
Trait Implementations§
impl Eq for LcDylib
impl StructuralPartialEq for LcDylib
Auto Trait Implementations§
impl Freeze for LcDylib
impl RefUnwindSafe for LcDylib
impl Send for LcDylib
impl Sync for LcDylib
impl Unpin for LcDylib
impl UnsafeUnpin for LcDylib
impl UnwindSafe for LcDylib
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