Struct object::elf::ProgramHeader32

source ·
#[repr(C)]
pub struct ProgramHeader32<E: Endian> { pub p_type: U32<E>, pub p_offset: U32<E>, pub p_vaddr: U32<E>, pub p_paddr: U32<E>, pub p_filesz: U32<E>, pub p_memsz: U32<E>, pub p_flags: U32<E>, pub p_align: U32<E>, }
Expand description

Program segment header.

Fields§

§p_type: U32<E>

Segment type. One of the PT_* constants.

§p_offset: U32<E>

Segment file offset.

§p_vaddr: U32<E>

Segment virtual address.

§p_paddr: U32<E>

Segment physical address.

§p_filesz: U32<E>

Segment size in the file.

§p_memsz: U32<E>

Segment size in memory.

§p_flags: U32<E>

Segment flags. A combination of the PF_* constants.

§p_align: U32<E>

Segment alignment.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Return the offset and size of the segment in the file.
Return the segment data. Read more
Return the segment data as a slice of the given type. Read more
Return the segment data in the given virtual address range Read more
Return entries in a dynamic segment. Read more
Return a note iterator for the segment data. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.