Struct Elf32_Phdr

#[repr(C)]
pub struct Elf32_Phdr { pub p_type: Elf32_Word, pub p_offset: Elf32_Off, pub p_vaddr: Elf32_Addr, pub p_paddr: Elf32_Addr, pub p_filesz: Elf32_Word, pub p_memsz: Elf32_Word, pub p_flags: Elf32_Word, pub p_align: Elf32_Word }

Fields

p_type: Elf32_Word
p_offset: Elf32_Off
p_vaddr: Elf32_Addr
p_paddr: Elf32_Addr
p_filesz: Elf32_Word
p_memsz: Elf32_Word
p_flags: Elf32_Word
p_align: Elf32_Word

Trait Implementations

impl Clone for Elf32_Phdr

fn clone(&self) -> Elf32_Phdr

impl Copy for Elf32_Phdr

impl Debug for Elf32_Phdr

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

impl Eq for Elf32_Phdr

impl Hash for Elf32_Phdr

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for Elf32_Phdr

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

impl StructuralPartialEq for Elf32_Phdr

Auto Trait Implementations

impl Freeze for Elf32_Phdr

impl RefUnwindSafe for Elf32_Phdr

impl Send for Elf32_Phdr

impl Sync for Elf32_Phdr

impl Unpin for Elf32_Phdr

impl UnsafeUnpin for Elf32_Phdr

impl UnwindSafe for Elf32_Phdr

Blanket Implementations

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

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for Elf32_Phdr where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for Elf32_Phdr where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for Elf32_Phdr where T: Clone,

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

impl<T> From<T> for Elf32_Phdr

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for Elf32_Phdr where U: From<T>,

fn into(self) -> U

Calls U::from(self).

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

impl<T, U> TryFrom<U> for Elf32_Phdr where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for Elf32_Phdr where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>