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
impl Clone for FileHeader32
source§fn clone(&self) -> FileHeader32
fn clone(&self) -> FileHeader32
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FileHeader32
impl Debug for FileHeader32
source§impl FileHeader for FileHeader32
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
fn is_type_64(&self) -> bool
Return true if this type is a 64-bit header.
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
source§fn parse<'data, R: ReadRef<'data>>(
data: R,
offset: &mut u64,
) -> Result<&'data Self>
fn parse<'data, R: ReadRef<'data>>( data: R, offset: &mut u64, ) -> Result<&'data Self>
Read the file header. Read more
fn is_supported(&self) -> bool
source§fn aux_header<'data, R: ReadRef<'data>>(
&self,
data: R,
offset: &mut u64,
) -> Result<Option<&'data Self::AuxHeader>>
fn aux_header<'data, R: ReadRef<'data>>( &self, data: R, offset: &mut u64, ) -> Result<Option<&'data Self::AuxHeader>>
Read the auxiliary file header.
impl Copy for FileHeader32
impl Pod for FileHeader32
Auto Trait Implementations§
impl Freeze for FileHeader32
impl RefUnwindSafe for FileHeader32
impl Send for FileHeader32
impl Sync for FileHeader32
impl Unpin for FileHeader32
impl UnwindSafe for FileHeader32
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)