#[repr(C)]pub struct Elf64Ehdr {Show 14 fields
pub e_ident: ElfIdent,
pub e_type: Elf64Half,
pub e_machine: Elf64Half,
pub e_version: Elf64Word,
pub e_entry: Elf64Addr,
pub e_phoff: Elf64Off,
pub e_shoff: Elf64Off,
pub e_flags: Elf64Word,
pub e_ehsize: Elf64Half,
pub e_phentsize: Elf64Half,
pub e_phnum: Elf64Half,
pub e_shentsize: Elf64Half,
pub e_shnum: Elf64Half,
pub e_shstrndx: Elf64Half,
}
Fields§
§e_ident: ElfIdent
§e_type: Elf64Half
§e_machine: Elf64Half
§e_version: Elf64Word
§e_entry: Elf64Addr
§e_phoff: Elf64Off
§e_shoff: Elf64Off
§e_flags: Elf64Word
§e_ehsize: Elf64Half
§e_phentsize: Elf64Half
§e_phnum: Elf64Half
§e_shentsize: Elf64Half
§e_shnum: Elf64Half
§e_shstrndx: Elf64Half
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf64Ehdr
impl RefUnwindSafe for Elf64Ehdr
impl Send for Elf64Ehdr
impl Sync for Elf64Ehdr
impl Unpin for Elf64Ehdr
impl UnwindSafe for Elf64Ehdr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more