[][src]Struct metagoblin::elf::reloc::reloc32::reloc64::Rel

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

Relocation without an addend

Fields

r_offset: u64

address

r_info: u64

relocation type and symbol address

Trait Implementations

impl Clone for Rel[src]

impl Debug for Rel[src]

impl Default for Rel[src]

impl From<Rel> for Reloc[src]

impl From<Reloc> for Rel[src]

impl PartialEq<Rel> for Rel[src]

impl Plain for Rel[src]

impl SizeWith<Endian> for Rel[src]

impl StructuralPartialEq for Rel[src]

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

type Error = Error

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

type Error = Error

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

type Error = Error

Auto Trait Implementations

impl RefUnwindSafe for Rel

impl Send for Rel

impl Sync for Rel

impl Unpin for Rel

impl UnwindSafe for Rel

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.