Struct Elf64_Phdr
#[repr(C)]
pub struct Elf64_Phdr { pub p_type: Elf64_Word, pub p_flags: Elf64_Word, pub p_offset: Elf64_Off, pub p_vaddr: Elf64_Addr, pub p_paddr: Elf64_Addr, pub p_filesz: Elf64_Xword, pub p_memsz: Elf64_Xword, pub p_align: Elf64_Xword }
Fields
p_type: Elf64_Wordp_flags: Elf64_Wordp_offset: Elf64_Offp_vaddr: Elf64_Addrp_paddr: Elf64_Addrp_filesz: Elf64_Xwordp_memsz: Elf64_Xwordp_align: Elf64_Xword
Trait Implementations
impl Clone for Elf64_Phdr
fn clone(&self) -> Elf64_Phdr
impl Copy for Elf64_Phdr
impl Debug for Elf64_Phdr
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for Elf64_Phdr
impl Hash for Elf64_Phdr
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for Elf64_Phdr
fn eq(&self, other: &Elf64_Phdr) -> bool
impl StructuralPartialEq for Elf64_Phdr
Auto Trait Implementations
impl Freeze for Elf64_Phdr
impl RefUnwindSafe for Elf64_Phdr
impl Send for Elf64_Phdr
impl Sync for Elf64_Phdr
impl Unpin for Elf64_Phdr
impl UnsafeUnpin for Elf64_Phdr
impl UnwindSafe for Elf64_Phdr
Blanket Implementations
impl<T> Any for Elf64_Phdr
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Elf64_Phdr
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Elf64_Phdr
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for Elf64_Phdr
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for Elf64_Phdr
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for Elf64_Phdr
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for Elf64_Phdr
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Elf64_Phdr
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>