#[repr(C)]pub struct Elf32_Chdr {
pub ch_type: u32,
pub ch_size: u32,
pub ch_addralign: u32,
}
Expand description
C-style 32-bit ELF Compression Header definition
These C-style definitions are for users who want to implement their own ELF manipulation logic.
Fields§
§ch_type: u32
§ch_size: u32
§ch_addralign: u32
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf32_Chdr
impl RefUnwindSafe for Elf32_Chdr
impl Send for Elf32_Chdr
impl Sync for Elf32_Chdr
impl Unpin for Elf32_Chdr
impl UnwindSafe for Elf32_Chdr
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