[][src]Struct elf_rs::ElfHeader32

#[repr(C)]
pub struct ElfHeader32 { pub magic: [u8; 4], pub class: u8, pub endianness: u8, pub header_version: u8, pub abi: u8, pub abi_version: u8, pub unused: [u8; 7], pub elftype: u16, pub machine: u16, pub elf_version: u32, pub entry: Self::Word, pub phoff: Self::Word, pub shoff: Self::Word, pub flags: u32, pub ehsize: u16, pub phentsize: u16, pub phnum: u16, pub shentsize: u16, pub shnum: u16, pub shstrndx: u16, }

Fields

magic: [u8; 4]class: u8endianness: u8header_version: u8abi: u8abi_version: u8unused: [u8; 7]elftype: u16machine: u16elf_version: u32entry: Self::Wordphoff: Self::Wordshoff: Self::Wordflags: u32ehsize: u16phentsize: u16phnum: u16shentsize: u16shnum: u16shstrndx: u16

Trait Implementations

impl GenElfHeader for ElfHeader32[src]

type Word = u32

impl Debug for ElfHeader32[src]

Auto Trait Implementations

impl Send for ElfHeader32

impl Sync for ElfHeader32

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]