Struct goblin::elf::dyn::dyn32::DynamicInfo [] [src]

pub struct DynamicInfo {
    pub rela: usize,
    pub relasz: usize,
    pub relaent: u32,
    pub relacount: usize,
    pub rel: usize,
    pub relsz: usize,
    pub relent: u32,
    pub relcount: usize,
    pub gnu_hash: Option<u32>,
    pub hash: Option<u32>,
    pub strtab: usize,
    pub strsz: usize,
    pub symtab: usize,
    pub syment: usize,
    pub pltgot: Option<u32>,
    pub pltrelsz: usize,
    pub pltrel: u32,
    pub jmprel: usize,
    pub verneed: u32,
    pub verneednum: u32,
    pub versym: u32,
    pub init: u32,
    pub fini: u32,
    pub init_array: u32,
    pub init_arraysz: usize,
    pub fini_array: u32,
    pub fini_arraysz: usize,
    pub needed_count: usize,
    pub flags: u32,
    pub flags_1: u32,
    pub soname: usize,
    pub textrel: bool,
}

Important dynamic linking info generated via a single pass through the _DYNAMIC array

Fields

Methods

impl DynamicInfo
[src]

Trait Implementations

impl Debug for DynamicInfo
[src]

Formats the value using the given formatter.

impl Default for DynamicInfo
[src]

Returns the "default value" for a type. Read more