Struct object::xcoff::FileHeader32

source ·
#[repr(C)]
pub struct FileHeader32 { pub f_magic: U16<BigEndian>, pub f_nscns: U16<BigEndian>, pub f_timdat: U32<BigEndian>, pub f_symptr: U32<BigEndian>, pub f_nsyms: U32<BigEndian>, pub f_opthdr: U16<BigEndian>, pub f_flags: U16<BigEndian>, }
Expand description

The header at the start of every 32-bit XCOFF file.

Fields§

§f_magic: U16<BigEndian>

Magic number. Must be 0x01DF.

§f_nscns: U16<BigEndian>

Number of sections.

§f_timdat: U32<BigEndian>

Time and date of file creation.

§f_symptr: U32<BigEndian>

Byte offset to symbol table start.

§f_nsyms: U32<BigEndian>

Number of entries in symbol table.

§f_opthdr: U16<BigEndian>

Number of bytes in optional header

§f_flags: U16<BigEndian>

Extra flags.

Trait Implementations§

source§

impl Clone for FileHeader32

source§

fn clone(&self) -> FileHeader32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FileHeader32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FileHeader for FileHeader32

§

type Word = u32

§

type AuxHeader = AuxHeader32

§

type SectionHeader = SectionHeader32

§

type Symbol = Symbol32

§

type FileAux = FileAux32

§

type CsectAux = CsectAux32

§

type Rel = Rel32

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

source§

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

Read the file header. Read more
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.
source§

impl Copy for FileHeader32

source§

impl Pod for FileHeader32

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.