Struct HeaderIdent

Source
#[repr(C)]
pub struct HeaderIdent { pub magic: [u8; 4], pub class: FileClass, pub endianness: Endianness, pub header_version: u8, pub os_abi: OSABI, pub os_abi_version: u8, /* private fields */ }
Expand description

Initial header which has the same layout in all ELF variants and determines how to interpret the rest of the file (endianness, sizes).

Fields§

§magic: [u8; 4]

Magic number that identifies this as an ELF file.

§class: FileClass

Specifies the address size (32- or 64-bit) of the file.

§endianness: Endianness

Specifies whether the file uses big or little endian byte ordering.

§header_version: u8

Version of the ELF header.

§os_abi: OSABI

Operating-system-specific ABI extensions that this file uses.

§os_abi_version: u8

Backwards-incompatible version number of the os_abi extensions that this file uses.

Implementations§

Source§

impl HeaderIdent

Source

pub const MAGIC: [u8; 4]

Expected value of the magic field.

Source

pub const VERSION: u8 = 1u8

Expected value of the header_version field.

Source

pub fn verify_format(&self)

Checks that the header represents a valid ELF file, of any variant, and panics otherwise.

§Panics

Panics when the header is not valid.

Source

pub fn verify_native(&self)

Checks that the header represents an ELF file in the native endianness and address size, and panics otherwise.

§Panics

Panics when the header is not valid for the current platform.

Trait Implementations§

Source§

impl Clone for HeaderIdent

Source§

fn clone(&self) -> HeaderIdent

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 HeaderIdent

Source§

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

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

impl Default for HeaderIdent

Source§

fn default() -> HeaderIdent

Returns the “default value” for a type. Read more
Source§

impl PartialEq for HeaderIdent

Source§

fn eq(&self, other: &HeaderIdent) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for HeaderIdent

Source§

impl Eq for HeaderIdent

Source§

impl StructuralPartialEq for HeaderIdent

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.