Trait object::read::elf::Dyn[][src]

pub trait Dyn: Debug + Pod {
    type Word: Into<u64>;
    type Endian: Endian;
    fn d_tag(&self, endian: Self::Endian) -> Self::Word;
fn d_val(&self, endian: Self::Endian) -> Self::Word; }

A trait for generic access to Dyn32 and Dyn64.

Associated Types

type Word: Into<u64>[src]

type Endian: Endian[src]

Loading content...

Required methods

fn d_tag(&self, endian: Self::Endian) -> Self::Word[src]

fn d_val(&self, endian: Self::Endian) -> Self::Word[src]

Loading content...

Implementors

impl<Endian: Endian> Dyn for Dyn32<Endian>[src]

type Word = u32

type Endian = Endian

impl<Endian: Endian> Dyn for Dyn64<Endian>[src]

type Word = u64

type Endian = Endian

Loading content...