Struct object::elf::Rela32 [−][src]
#[repr(C)]pub struct Rela32<E: Endian> {
pub r_offset: U32<E>,
pub r_info: U32<E>,
pub r_addend: I32<E>,
}
Expand description
Relocation table entry with explicit addend.
Fields
r_offset: U32<E>
Relocation address.
r_info: U32<E>
Relocation type and symbol index.
r_addend: I32<E>
Explicit addend.
Implementations
Calculate the r_info
field given the r_sym
and r_type
components.
Set the r_info
field given the r_sym
and r_type
components.
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for Rela32<E> where
E: RefUnwindSafe,
impl<E> UnwindSafe for Rela32<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more