Struct lief::macho::Header

pub struct Header<'a> { /* private fields */ }
Expand description

Structure that represents the main Mach-O header (at the beginning of the file)

Implementations§

§

impl Header<'_>

pub fn magic(&self) -> u32

The Mach-O magic bytes. These bytes determine whether it is a 32 bits Mach-O, a 64 bits Mach-O files etc.

pub fn cpu_type(&self) -> CpuType

The CPU architecture targeted by this binary

pub fn cpu_subtype(&self) -> u32

Return the CPU subtype supported by the Mach-O binary. For ARM architectures, this value could represent the minimum version for which the Mach-O binary has been compiled for.

pub fn file_type(&self) -> FileType

Return the type of the Mach-O file (executable, object, shared library, …)

pub fn nb_cmds(&self) -> u32

Number of crate::macho::Commands present in the Mach-O binary

pub fn sizeof_cmds(&self) -> u32

The raw size of all the load commands (LC_xxx)

pub fn flags(&self) -> Flags

Header flags

pub fn reserved(&self) -> u32

According to the official specs, a reserved value

Trait Implementations§

§

impl Debug for Header<'_>

§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Header<'a>

§

impl<'a> !Send for Header<'a>

§

impl<'a> !Sync for Header<'a>

§

impl<'a> Unpin for Header<'a>

§

impl<'a> UnwindSafe for Header<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.