#[repr(C)]struct Elf64Phdr {
    p_type: u32,
    p_flags: PFlags,
    p_offset: u64,
    p_vaddr: VirtualAddress,
    p_paddr: PhysicalAddress,
    p_filesz: u64,
    p_memsz: u64,
    p_align: u64,
}Fields§
§p_type: u32§p_flags: PFlags§p_offset: u64§p_vaddr: VirtualAddress§p_paddr: PhysicalAddress§p_filesz: u64§p_memsz: u64§p_align: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf64Phdr
impl RefUnwindSafe for Elf64Phdr
impl Send for Elf64Phdr
impl Sync for Elf64Phdr
impl Unpin for Elf64Phdr
impl UnwindSafe for Elf64Phdr
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