[][src]Trait elf_utilities::section::Contents

pub trait Contents {
    type Symbol;
    type Dyn;
    type Rela;
    fn clone_raw_binary(&self) -> Vec<u8>;
fn clone_symbols(&self) -> Vec<Self::Symbol>;
fn clone_dynamics(&self) -> Vec<Self::Dyn>;
fn clone_rela_symbols(&self) -> Vec<Self::Rela>; }

Associated Types

type Symbol

type Dyn

type Rela

Loading content...

Required methods

fn clone_raw_binary(&self) -> Vec<u8>

fn clone_symbols(&self) -> Vec<Self::Symbol>

fn clone_dynamics(&self) -> Vec<Self::Dyn>

fn clone_rela_symbols(&self) -> Vec<Self::Rela>

Loading content...

Implementors

impl Contents for Contents32[src]

type Symbol = Symbol32

type Dyn = Dyn32

type Rela = Rela32

impl Contents for Contents64[src]

type Symbol = Symbol64

type Dyn = Dyn64

type Rela = Rela64

Loading content...