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