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