Struct Elf64_Sym

#[repr(C)]
pub struct Elf64_Sym { pub st_name: Elf64_Word, pub st_info: c_uchar, pub st_other: c_uchar, pub st_shndx: Elf64_Section, pub st_value: Elf64_Addr, pub st_size: Elf64_Xword }

Fields

st_name: Elf64_Word
st_info: c_uchar
st_other: c_uchar
st_shndx: Elf64_Section
st_value: Elf64_Addr
st_size: Elf64_Xword

Trait Implementations

impl Clone for Elf64_Sym

fn clone(&self) -> Elf64_Sym

impl Copy for Elf64_Sym

impl Debug for Elf64_Sym

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for Elf64_Sym

impl Hash for Elf64_Sym

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for Elf64_Sym

fn eq(&self, other: &Elf64_Sym) -> bool

impl StructuralPartialEq for Elf64_Sym

Auto Trait Implementations

impl Freeze for Elf64_Sym

impl RefUnwindSafe for Elf64_Sym

impl Send for Elf64_Sym

impl Sync for Elf64_Sym

impl Unpin for Elf64_Sym

impl UnsafeUnpin for Elf64_Sym

impl UnwindSafe for Elf64_Sym

Blanket Implementations

impl<T> Any for Elf64_Sym where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for Elf64_Sym where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for Elf64_Sym where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for Elf64_Sym where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for Elf64_Sym

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for Elf64_Sym where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for Elf64_Sym where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for Elf64_Sym where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>