Expand description
Dynamic section entry.
Fields§
§d_tag: U64<E>
Dynamic entry type.
d_val: U64<E>
Value (integer or address).
Trait Implementations§
source§impl<Endian: Endian> Dyn for Dyn64<Endian>
impl<Endian: Endian> Dyn for Dyn64<Endian>
type Word = u64
type Endian = Endian
fn d_tag(&self, endian: Self::Endian) -> Self::Word
fn d_val(&self, endian: Self::Endian) -> Self::Word
source§fn is_string(&self, endian: Self::Endian) -> bool
fn is_string(&self, endian: Self::Endian) -> bool
Return true if the value is an offset in the dynamic string table.
source§fn string<'data>(
&self,
endian: Self::Endian,
strings: StringTable<'data>
) -> Result<&'data [u8]>
fn string<'data>(
&self,
endian: Self::Endian,
strings: StringTable<'data>
) -> Result<&'data [u8]>
Use the value to get a string in a string table. Read more
source§fn is_address(&self, endian: Self::Endian) -> bool
fn is_address(&self, endian: Self::Endian) -> bool
Return true if the value is an address.