Struct goblin::elf::program_header::program_header32::ProgramHeader [−][src]
A 32-bit ProgramHeader typically specifies how to map executable and data segments into memory
Fields
p_type: u32Segment type
p_offset: u32Segment file offset
p_vaddr: u32Segment virtual address
p_paddr: u32Segment physical address
p_filesz: u32Segment size in file
p_memsz: u32Segment size in memory
p_flags: u32Segment flags
p_align: u32Segment alignment
Implementations
impl ProgramHeader[src]
pub fn parse(
bytes: &[u8],
offset: usize,
count: usize,
ctx: Endian
) -> Result<Vec<ProgramHeader>>[src]
bytes: &[u8],
offset: usize,
count: usize,
ctx: Endian
) -> Result<Vec<ProgramHeader>>
pub fn from_bytes(bytes: &[u8], phnum: usize) -> Vec<ProgramHeader>[src]
pub unsafe fn from_raw_parts<'a>(
phdrp: *const ProgramHeader,
phnum: usize
) -> &'a [ProgramHeader][src]
phdrp: *const ProgramHeader,
phnum: usize
) -> &'a [ProgramHeader]
Safety
This function creates a ProgramHeader directly from a raw pointer
pub fn from_fd(
fd: &mut File,
offset: u64,
count: usize
) -> Result<Vec<ProgramHeader>>[src]
fd: &mut File,
offset: u64,
count: usize
) -> Result<Vec<ProgramHeader>>
Trait Implementations
impl Clone for ProgramHeader[src]
fn clone(&self) -> ProgramHeader[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for ProgramHeader[src]
impl Debug for ProgramHeader[src]
impl Default for ProgramHeader[src]
fn default() -> ProgramHeader[src]
impl From<ProgramHeader> for ElfProgramHeader[src]
fn from(ph: ProgramHeader) -> Self[src]
impl From<ProgramHeader> for ProgramHeader[src]
fn from(ph: ElfProgramHeader) -> Self[src]
impl PartialEq<ProgramHeader> for ProgramHeader[src]
fn eq(&self, other: &ProgramHeader) -> bool[src]
fn ne(&self, other: &ProgramHeader) -> bool[src]
impl Plain for ProgramHeader[src]
pub fn from_bytes(bytes: &[u8]) -> Result<&Self, Error>[src]
pub fn slice_from_bytes(bytes: &[u8]) -> Result<&[Self], Error>[src]
pub fn slice_from_bytes_len(bytes: &[u8], len: usize) -> Result<&[Self], Error>[src]
pub fn from_mut_bytes(bytes: &mut [u8]) -> Result<&mut Self, Error>[src]
pub fn slice_from_mut_bytes(bytes: &mut [u8]) -> Result<&mut [Self], Error>[src]
pub fn slice_from_mut_bytes_len(
bytes: &mut [u8],
len: usize
) -> Result<&mut [Self], Error>[src]
bytes: &mut [u8],
len: usize
) -> Result<&mut [Self], Error>
pub fn copy_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Error>[src]
impl SizeWith<Endian> for ProgramHeader[src]
impl StructuralPartialEq for ProgramHeader[src]
impl<'a> TryFromCtx<'a, Endian, [u8]> for ProgramHeader where
ProgramHeader: 'a, [src]
ProgramHeader: 'a,
type Error = Error
fn try_from_ctx(
src: &'a [u8],
ctx: Endian
) -> Result<(Self, usize), Self::Error>[src]
src: &'a [u8],
ctx: Endian
) -> Result<(Self, usize), Self::Error>
impl<'a> TryIntoCtx<Endian, [u8]> for &'a ProgramHeader[src]
type Error = Error
fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>[src]
impl TryIntoCtx<Endian, [u8]> for ProgramHeader[src]
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
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,
pub 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.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,