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

pub trait CompressionHeader: Debug + Pod {
    type Word: Into<u64>;
    type Endian: Endian;
    fn ch_type(&self, endian: Self::Endian) -> u32;
fn ch_size(&self, endian: Self::Endian) -> Self::Word;
fn ch_addralign(&self, endian: Self::Endian) -> Self::Word; }

A trait for generic access to CompressionHeader32 and CompressionHeader64.

Associated Types

type Word: Into<u64>

type Endian: Endian

Loading content...

Required methods

fn ch_type(&self, endian: Self::Endian) -> u32

fn ch_size(&self, endian: Self::Endian) -> Self::Word

fn ch_addralign(&self, endian: Self::Endian) -> Self::Word

Loading content...

Implementors

impl<Endian: Endian> CompressionHeader for CompressionHeader32<Endian>[src]

type Word = u32

type Endian = Endian

impl<Endian: Endian> CompressionHeader for CompressionHeader64<Endian>[src]

type Word = u64

type Endian = Endian

Loading content...