[][src]Struct goblin::elf::reloc::reloc32::Rel

#[repr(C)]
pub struct Rel {
    pub r_offset: u32,
    pub r_info: u32,
}

Relocation without an addend

Fields

r_offset: u32

address

r_info: u32

relocation type and symbol address

Trait Implementations

impl From<Rel> for Reloc[src]

impl From<Reloc> for Rel[src]

impl PartialEq<Rel> for Rel[src]

impl Clone for Rel[src]

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

Performs copy-assignment from source. Read more

impl Default for Rel[src]

impl Debug for Rel[src]

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

impl SizeWith<Endian> for Rel[src]

type Units = usize

impl Plain for Rel[src]

Auto Trait Implementations

impl Unpin for Rel

impl Sync for Rel

impl Send for Rel

impl RefUnwindSafe for Rel

impl UnwindSafe for Rel

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]