Struct object::xcoff::FileHeader64
source · #[repr(C)]pub struct FileHeader64 {
pub f_magic: U16<BigEndian>,
pub f_nscns: U16<BigEndian>,
pub f_timdat: U32<BigEndian>,
pub f_symptr: U64<BigEndian>,
pub f_opthdr: U16<BigEndian>,
pub f_flags: U16<BigEndian>,
pub f_nsyms: U32<BigEndian>,
}
Expand description
The header at the start of every 64-bit XCOFF file.
Fields§
§f_magic: U16<BigEndian>
Magic number. Must be 0x01F7.
f_nscns: U16<BigEndian>
Number of sections.
f_timdat: U32<BigEndian>
Time and date of file creation
f_symptr: U64<BigEndian>
Byte offset to symbol table start.
f_opthdr: U16<BigEndian>
Number of bytes in optional header
f_flags: U16<BigEndian>
Extra flags.
f_nsyms: U32<BigEndian>
Number of entries in symbol table.
Trait Implementations§
source§impl Clone for FileHeader64
impl Clone for FileHeader64
source§fn clone(&self) -> FileHeader64
fn clone(&self) -> FileHeader64
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 FileHeader64
impl Debug for FileHeader64
source§impl FileHeader for FileHeader64
impl FileHeader for FileHeader64
type Word = u64
type AuxHeader = AuxHeader64
type SectionHeader = SectionHeader64
type Symbol = Symbol64
type FileAux = FileAux64
type CsectAux = CsectAux64
type Rel = Rel64
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 FileHeader64
impl Pod for FileHeader64
Auto Trait Implementations§
impl Freeze for FileHeader64
impl RefUnwindSafe for FileHeader64
impl Send for FileHeader64
impl Sync for FileHeader64
impl Unpin for FileHeader64
impl UnwindSafe for FileHeader64
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
)