Struct Elf64_Shdr
#[repr(C)]
pub struct Elf64_Shdr { pub sh_name: Elf64_Word, pub sh_type: Elf64_Word, pub sh_flags: Elf64_Xword, pub sh_addr: Elf64_Addr, pub sh_offset: Elf64_Off, pub sh_size: Elf64_Xword, pub sh_link: Elf64_Word, pub sh_info: Elf64_Word, pub sh_addralign: Elf64_Xword, pub sh_entsize: Elf64_Xword }
Fields
sh_name: Elf64_Wordsh_type: Elf64_Wordsh_flags: Elf64_Xwordsh_addr: Elf64_Addrsh_offset: Elf64_Offsh_size: Elf64_Xwordsh_link: Elf64_Wordsh_info: Elf64_Wordsh_addralign: Elf64_Xwordsh_entsize: Elf64_Xword
Trait Implementations
impl Clone for Elf64_Shdr
fn clone(&self) -> Elf64_Shdr
impl Copy for Elf64_Shdr
impl Debug for Elf64_Shdr
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for Elf64_Shdr
impl Hash for Elf64_Shdr
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for Elf64_Shdr
fn eq(&self, other: &Elf64_Shdr) -> bool
impl StructuralPartialEq for Elf64_Shdr
Auto Trait Implementations
impl Freeze for Elf64_Shdr
impl RefUnwindSafe for Elf64_Shdr
impl Send for Elf64_Shdr
impl Sync for Elf64_Shdr
impl Unpin for Elf64_Shdr
impl UnsafeUnpin for Elf64_Shdr
impl UnwindSafe for Elf64_Shdr
Blanket Implementations
impl<T> Any for Elf64_Shdr
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Elf64_Shdr
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Elf64_Shdr
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for Elf64_Shdr
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for Elf64_Shdr
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for Elf64_Shdr
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_Shdr
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Elf64_Shdr
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>