[][src]Struct goblin::elf::reloc::reloc64::Rela

#[repr(C)]
pub struct Rela {
    pub r_offset: u64,
    pub r_info: u64,
    pub r_addend: i64,
}

Relocation with an explicit addend

Fields

r_offset: u64

Address

r_info: u64

Relocation type and symbol index

r_addend: i64

Addend

Trait Implementations

impl From<Rela> for Reloc[src]

impl From<Reloc> for Rela[src]

impl PartialEq<Rela> for Rela[src]

impl Clone for Rela[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Rela[src]

impl Copy for Rela[src]

impl Debug for Rela[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for Rela where
    Rela: 'a, 
[src]

type Error = Error

type Size = usize

impl<'a> TryIntoCtx<Endian, [u8]> for &'a Rela[src]

type Error = Error

type Size = usize

impl TryIntoCtx<Endian, [u8]> for Rela[src]

type Error = Error

type Size = usize

impl SizeWith<Endian> for Rela[src]

type Units = usize

impl Plain for Rela[src]

Auto Trait Implementations

impl Unpin for Rela

impl Sync for Rela

impl Send for Rela

impl RefUnwindSafe for Rela

impl UnwindSafe for Rela

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]