pub trait FileHeader: Debug + Pod {
    type Word: Into<u64>;
    type AuxHeader: AuxHeader<Word = Self::Word>;
    type SectionHeader: SectionHeader<Word = Self::Word>;
    type Symbol: Symbol<Word = Self::Word>;
    type FileAux: FileAux;
    type CsectAux: CsectAux;

Show 13 methods // Required methods fn is_type_64(&self) -> bool; fn f_magic(&self) -> u16; fn f_nscns(&self) -> u16; fn f_timdat(&self) -> u32; fn f_symptr(&self) -> Self::Word; fn f_nsyms(&self) -> u32; fn f_opthdr(&self) -> u16; fn f_flags(&self) -> u16; // Provided methods fn parse<'data, R: ReadRef<'data>>( data: R, offset: &mut u64 ) -> Result<&'data Self> { ... } fn is_supported(&self) -> bool { ... } fn aux_header<'data, R: ReadRef<'data>>( &self, data: R, offset: &mut u64 ) -> Result<Option<&'data Self::AuxHeader>> { ... } fn sections<'data, R: ReadRef<'data>>( &self, data: R, offset: &mut u64 ) -> Result<SectionTable<'data, Self>> { ... } fn symbols<'data, R: ReadRef<'data>>( &self, data: R ) -> Result<SymbolTable<'data, Self, R>> { ... }
}
Expand description

A trait for generic access to xcoff::FileHeader32 and xcoff::FileHeader64.

Required Associated Types§

Required Methods§

source

fn is_type_64(&self) -> bool

Return true if this type is a 64-bit header.

source

fn f_magic(&self) -> u16

source

fn f_nscns(&self) -> u16

source

fn f_timdat(&self) -> u32

source

fn f_symptr(&self) -> Self::Word

source

fn f_nsyms(&self) -> u32

source

fn f_opthdr(&self) -> u16

source

fn f_flags(&self) -> u16

Provided Methods§

source

fn parse<'data, R: ReadRef<'data>>( data: R, offset: &mut u64 ) -> Result<&'data Self>

Read the file header.

Also checks that the magic field in the file header is a supported format.

source

fn is_supported(&self) -> bool

source

fn aux_header<'data, R: ReadRef<'data>>( &self, data: R, offset: &mut u64 ) -> Result<Option<&'data Self::AuxHeader>>

Read the auxiliary file header.

source

fn sections<'data, R: ReadRef<'data>>( &self, data: R, offset: &mut u64 ) -> Result<SectionTable<'data, Self>>

Read the section table.

source

fn symbols<'data, R: ReadRef<'data>>( &self, data: R ) -> Result<SymbolTable<'data, Self, R>>

Return the symbol table.

Object Safety§

This trait is not object safe.

Implementors§