Struct Elf64_Ehdr
#[repr(C)]
pub struct Elf64_Ehdr { pub e_ident: [c_uchar; 16], pub e_type: Elf64_Half, pub e_machine: Elf64_Half, pub e_version: Elf64_Word, pub e_entry: Elf64_Addr, pub e_phoff: Elf64_Off, pub e_shoff: Elf64_Off, pub e_flags: Elf64_Word, pub e_ehsize: Elf64_Half, pub e_phentsize: Elf64_Half, pub e_phnum: Elf64_Half, pub e_shentsize: Elf64_Half, pub e_shnum: Elf64_Half, pub e_shstrndx: Elf64_Half }
Fields
e_ident: [c_uchar; 16]e_type: Elf64_Halfe_machine: Elf64_Halfe_version: Elf64_Worde_entry: Elf64_Addre_phoff: Elf64_Offe_shoff: Elf64_Offe_flags: Elf64_Worde_ehsize: Elf64_Halfe_phentsize: Elf64_Halfe_phnum: Elf64_Halfe_shentsize: Elf64_Halfe_shnum: Elf64_Halfe_shstrndx: Elf64_Half
Trait Implementations
impl Clone for Elf64_Ehdr
fn clone(&self) -> Elf64_Ehdr
impl Copy for Elf64_Ehdr
impl Debug for Elf64_Ehdr
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for Elf64_Ehdr
impl Hash for Elf64_Ehdr
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for Elf64_Ehdr
fn eq(&self, other: &Elf64_Ehdr) -> bool
impl StructuralPartialEq for Elf64_Ehdr
Auto Trait Implementations
impl Freeze for Elf64_Ehdr
impl RefUnwindSafe for Elf64_Ehdr
impl Send for Elf64_Ehdr
impl Sync for Elf64_Ehdr
impl Unpin for Elf64_Ehdr
impl UnsafeUnpin for Elf64_Ehdr
impl UnwindSafe for Elf64_Ehdr
Blanket Implementations
impl<T> Any for Elf64_Ehdr
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Elf64_Ehdr
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Elf64_Ehdr
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for Elf64_Ehdr
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for Elf64_Ehdr
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for Elf64_Ehdr
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_Ehdr
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Elf64_Ehdr
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>