Trait object::read::elf::Rel [−][src]
pub trait Rel: Debug + Pod + Clone { type Word: Into<u64>; type Sword: Into<i64>; type Endian: Endian; 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; }
A trait for generic access to Rel32
and Rel64
.