object::read::elf

Trait Rel

Source
pub trait Rel:
    Debug
    + Pod
    + Clone {
    type Word: Into<u64>;
    type Sword: Into<i64>;
    type Endian: Endian;

    // Required methods
    fn r_offset(&self, endian: Self::Endian) -> Self::Word;
    fn r_info(&self, endian: Self::Endian) -> Self::Word;
    fn r_sym(&self, endian: Self::Endian) -> u32;
    fn r_type(&self, endian: Self::Endian) -> u32;
}
Expand description

A trait for generic access to Rel32 and Rel64.

Required Associated Types§

Required Methods§

Source

fn r_offset(&self, endian: Self::Endian) -> Self::Word

Source

fn r_info(&self, endian: Self::Endian) -> Self::Word

Source

fn r_sym(&self, endian: Self::Endian) -> u32

Source

fn r_type(&self, endian: Self::Endian) -> u32

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Endian: Endian> Rel for Rel32<Endian>

Source§

type Word = u32

Source§

type Sword = i32

Source§

type Endian = Endian

Source§

impl<Endian: Endian> Rel for Rel64<Endian>

Source§

type Word = u64

Source§

type Sword = i64

Source§

type Endian = Endian