Struct goblin::elf::program_header::ProgramHeader
source · pub struct ProgramHeader {
pub p_type: u32,
pub p_flags: u32,
pub p_offset: u64,
pub p_vaddr: u64,
pub p_paddr: u64,
pub p_filesz: u64,
pub p_memsz: u64,
pub p_align: u64,
}
Expand description
A unified ProgramHeader - convertable to and from 32-bit and 64-bit variants
Fields§
§p_type: u32
§p_flags: u32
§p_offset: u64
§p_vaddr: u64
§p_paddr: u64
§p_filesz: u64
§p_memsz: u64
§p_align: u64
Implementations§
source§impl ProgramHeader
impl ProgramHeader
sourcepub fn file_range(&self) -> Range<usize>
pub fn file_range(&self) -> Range<usize>
Returns this program header’s file offset range
sourcepub fn executable(&mut self)
pub fn executable(&mut self)
Sets the executable flag
sourcepub fn is_executable(&self) -> bool
pub fn is_executable(&self) -> bool
Whether this program header is executable
pub fn parse( bytes: &[u8], offset: usize, count: usize, ctx: Ctx ) -> Result<Vec<ProgramHeader>>
Trait Implementations§
source§impl Clone for ProgramHeader
impl Clone for ProgramHeader
source§fn clone(&self) -> ProgramHeader
fn clone(&self) -> ProgramHeader
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 ProgramHeader
impl Debug for ProgramHeader
source§impl Default for ProgramHeader
impl Default for ProgramHeader
source§fn default() -> ProgramHeader
fn default() -> ProgramHeader
Returns the “default value” for a type. Read more
source§impl From<ProgramHeader> for ProgramHeader
impl From<ProgramHeader> for ProgramHeader
source§fn from(ph: ElfProgramHeader) -> Self
fn from(ph: ElfProgramHeader) -> Self
Converts to this type from the input type.
source§impl From<ProgramHeader> for ProgramHeader
impl From<ProgramHeader> for ProgramHeader
source§fn from(ph: ElfProgramHeader) -> Self
fn from(ph: ElfProgramHeader) -> Self
Converts to this type from the input type.
source§impl From<ProgramHeader> for ElfProgramHeader
impl From<ProgramHeader> for ElfProgramHeader
source§fn from(ph: ProgramHeader) -> Self
fn from(ph: ProgramHeader) -> Self
Converts to this type from the input type.
source§impl From<ProgramHeader> for ElfProgramHeader
impl From<ProgramHeader> for ElfProgramHeader
source§fn from(ph: ProgramHeader) -> Self
fn from(ph: ProgramHeader) -> Self
Converts to this type from the input type.
source§impl PartialEq for ProgramHeader
impl PartialEq for ProgramHeader
source§fn eq(&self, other: &ProgramHeader) -> bool
fn eq(&self, other: &ProgramHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> TryFromCtx<'a, Ctx> for ProgramHeader
impl<'a> TryFromCtx<'a, Ctx> for ProgramHeader
source§impl TryIntoCtx<Ctx> for ProgramHeader
impl TryIntoCtx<Ctx> for ProgramHeader
impl StructuralPartialEq for ProgramHeader
Auto Trait Implementations§
impl RefUnwindSafe for ProgramHeader
impl Send for ProgramHeader
impl Sync for ProgramHeader
impl Unpin for ProgramHeader
impl UnwindSafe for ProgramHeader
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