#[repr(C)]pub struct Elf64Phdr {
pub p_type: Elf64Word,
pub p_flags: Elf64Word,
pub p_offset: Elf64Off,
pub p_vaddr: Elf64Addr,
pub p_paddr: Elf64Addr,
pub p_filesz: Elf64Xword,
pub p_memsz: Elf64Xword,
pub p_align: Elf64Xword,
}
Fields§
§p_type: Elf64Word
§p_flags: Elf64Word
§p_offset: Elf64Off
§p_vaddr: Elf64Addr
§p_paddr: Elf64Addr
§p_filesz: Elf64Xword
§p_memsz: Elf64Xword
§p_align: Elf64Xword
Implementations§
Trait 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
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