#[repr(C)]pub struct Elf64_Dyn {
pub d_tag: i64,
pub d_un: u64,
}
Expand description
C-style 64-bit ELF Dynamic section entry definition
These C-style definitions are for users who want to implement their own ELF manipulation logic.
Fields§
§d_tag: i64
§d_un: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf64_Dyn
impl RefUnwindSafe for Elf64_Dyn
impl Send for Elf64_Dyn
impl Sync for Elf64_Dyn
impl Unpin for Elf64_Dyn
impl UnwindSafe for Elf64_Dyn
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