#[repr(C)]pub struct Elf64Dyn {
pub d_tag: i64,
pub d_val: u64,
}Expand description
Represents an ELF64 dynamic table entry.
Used in shared objects and executables to describe dynamic linking information.
Fields§
§d_tag: i64Dynamic entry type (e.g., DT_NEEDED, DT_SYMTAB).
d_val: u64Value associated with the tag (address or integer).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf64Dyn
impl RefUnwindSafe for Elf64Dyn
impl Send for Elf64Dyn
impl Sync for Elf64Dyn
impl Unpin for Elf64Dyn
impl UnwindSafe for Elf64Dyn
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