#[repr(C)]pub struct Elf64Shdr {
pub sh_name: Elf64Word,
pub sh_type: Elf64Word,
pub sh_flags: Elf64Xword,
pub sh_addr: Elf64Addr,
pub sh_offset: Elf64Off,
pub sh_size: Elf64Xword,
pub sh_link: Elf64Word,
pub sh_info: Elf64Word,
pub sh_addralign: Elf64Xword,
pub sh_entsize: Elf64Xword,
}
Fields§
§sh_name: Elf64Word
§sh_type: Elf64Word
§sh_flags: Elf64Xword
§sh_addr: Elf64Addr
§sh_offset: Elf64Off
§sh_size: Elf64Xword
§sh_link: Elf64Word
§sh_info: Elf64Word
§sh_addralign: Elf64Xword
§sh_entsize: Elf64Xword
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Elf64Shdr
impl RefUnwindSafe for Elf64Shdr
impl Send for Elf64Shdr
impl Sync for Elf64Shdr
impl Unpin for Elf64Shdr
impl UnwindSafe for Elf64Shdr
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