#[repr(C)]pub struct Elf32_Ehdr {}
Expand description
C-style 32-bit ELF File Header definition
These C-style definitions are for users who want to implement their own ELF manipulation logic.
Fields§
§e_ident: [u8; 16]
§e_type: u16
§e_machine: u16
§e_version: u32
§e_entry: u32
§e_phoff: u32
§e_shoff: u32
§e_flags: u32
§e_ehsize: u16
§e_phentsize: u16
§e_phnum: u16
§e_shentsize: u16
§e_shnum: u16
§e_shstrndx: u16
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf32_Ehdr
impl RefUnwindSafe for Elf32_Ehdr
impl Send for Elf32_Ehdr
impl Sync for Elf32_Ehdr
impl Unpin for Elf32_Ehdr
impl UnwindSafe for Elf32_Ehdr
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