[−][src]Struct object::elf::FileHeader64
The header at the start of every 64-bit ELF file.
Fields
e_ident: Ident
Magic number and other information.
e_type: U16<E>
Object file type. One of the ET_*
constants.
e_machine: U16<E>
Architecture. One of the EM_*
constants.
e_version: U32<E>
Object file version. Must be EV_CURRENT
.
e_entry: U64<E>
Entry point virtual address.
e_phoff: U64<E>
Program header table file offset.
e_shoff: U64<E>
Section header table file offset.
e_flags: U32<E>
Processor-specific flags.
A combination of the EF_*
constants.
e_ehsize: U16<E>
Size in bytes of this header.
e_phentsize: U16<E>
Program header table entry size.
e_phnum: U16<E>
Program header table entry count.
If the count is greater than or equal to PN_XNUM
then this field is set to
PN_XNUM
and the count is stored in the sh_info
field of section 0.
e_shentsize: U16<E>
Section header table entry size.
e_shnum: U16<E>
Section header table entry count.
If the count is greater than or equal to SHN_LORESERVE
then this field is set to
0
and the count is stored in the sh_size
field of section 0.
first section header.
e_shstrndx: U16<E>
Section header string table index.
If the index is greater than or equal to SHN_LORESERVE
then this field is set to
SHN_XINDEX
and the index is stored in the sh_link
field of section 0.
Trait Implementations
impl<E: Clone + Endian> Clone for FileHeader64<E>
[src]
fn clone(&self) -> FileHeader64<E>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<E: Copy + Endian> Copy for FileHeader64<E>
[src]
impl<E: Debug + Endian> Debug for FileHeader64<E>
[src]
impl<Endian: Endian> FileHeader for FileHeader64<Endian>
[src]
type Word = u64
type Sword = i64
type Endian = Endian
type ProgramHeader = ProgramHeader64<Endian>
type SectionHeader = SectionHeader64<Endian>
type CompressionHeader = CompressionHeader64<Endian>
type NoteHeader = NoteHeader32<Endian>
type Sym = Sym64<Endian>
type Rel = Rel64<Endian>
type Rela = Rela64<Endian>
fn is_type_64(&self) -> bool
[src]
fn e_ident(&self) -> &Ident
[src]
fn e_type(&self, endian: Self::Endian) -> u16
[src]
fn e_machine(&self, endian: Self::Endian) -> u16
[src]
fn e_version(&self, endian: Self::Endian) -> u32
[src]
fn e_entry(&self, endian: Self::Endian) -> Self::Word
[src]
fn e_phoff(&self, endian: Self::Endian) -> Self::Word
[src]
fn e_shoff(&self, endian: Self::Endian) -> Self::Word
[src]
fn e_flags(&self, endian: Self::Endian) -> u32
[src]
fn e_ehsize(&self, endian: Self::Endian) -> u16
[src]
fn e_phentsize(&self, endian: Self::Endian) -> u16
[src]
fn e_phnum(&self, endian: Self::Endian) -> u16
[src]
fn e_shentsize(&self, endian: Self::Endian) -> u16
[src]
fn e_shnum(&self, endian: Self::Endian) -> u16
[src]
fn e_shstrndx(&self, endian: Self::Endian) -> u16
[src]
fn parse<'data>(data: Bytes<'data>) -> Result<&'data Self>
[src]
fn is_supported(&self) -> bool
[src]
fn is_class_32(&self) -> bool
[src]
fn is_class_64(&self) -> bool
[src]
fn is_little_endian(&self) -> bool
[src]
fn is_big_endian(&self) -> bool
[src]
fn endian(&self) -> Result<Self::Endian>
[src]
fn section_0<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<Option<&'data Self::SectionHeader>>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<Option<&'data Self::SectionHeader>>
fn phnum<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<usize>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<usize>
fn shnum<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<usize>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<usize>
fn shstrndx<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<u32>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<u32>
fn program_headers<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<&'data [Self::ProgramHeader]>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<&'data [Self::ProgramHeader]>
fn section_headers<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<&'data [Self::SectionHeader]>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<&'data [Self::SectionHeader]>
fn section_strings<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>,
sections: &[Self::SectionHeader]
) -> Result<StringTable<'data>>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>,
sections: &[Self::SectionHeader]
) -> Result<StringTable<'data>>
fn sections<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<SectionTable<'data, Self>>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<SectionTable<'data, Self>>
impl<E: Endian> Pod for FileHeader64<E>
[src]
Auto Trait Implementations
impl<E> Send for FileHeader64<E> where
E: Send,
E: Send,
impl<E> Sync for FileHeader64<E> where
E: Sync,
E: Sync,
impl<E> Unpin for FileHeader64<E> where
E: Unpin,
E: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,