#[repr(C)]pub struct Elf32_Shdr {
pub sh_name: u32,
pub sh_type: u32,
pub sh_flags: u32,
pub sh_addr: u32,
pub sh_offset: u32,
pub sh_size: u32,
pub sh_link: u32,
pub sh_info: u32,
pub sh_addralign: u32,
pub sh_entsize: u32,
}Expand description
C-style 32-bit ELF Section Header definition
These C-style definitions are for users who want to implement their own ELF manipulation logic.
Fields§
§sh_name: u32§sh_type: u32§sh_flags: u32§sh_addr: u32§sh_offset: u32§sh_size: u32§sh_link: u32§sh_info: u32§sh_addralign: u32§sh_entsize: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf32_Shdr
impl RefUnwindSafe for Elf32_Shdr
impl Send for Elf32_Shdr
impl Sync for Elf32_Shdr
impl Unpin for Elf32_Shdr
impl UnwindSafe for Elf32_Shdr
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