#[repr(C)]pub struct Elf64Rela {
pub r_offset: u64,
pub r_addend: i64,
pub r_info: u64,
}Expand description
Represents an ELF64 relocation entry with addend.
Describes how a symbol or address should be relocated at runtime.
Fields§
§r_offset: u64Location to apply the relocation.
r_addend: i64Addend constant used in the relocation calculation.
r_info: u64Relocation type and symbol index, packed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf64Rela
impl RefUnwindSafe for Elf64Rela
impl Send for Elf64Rela
impl Sync for Elf64Rela
impl Unpin for Elf64Rela
impl UnwindSafe for Elf64Rela
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