[−][src]Struct object::elf::Sym64
Symbol table entry.
Fields
st_name: U32<E>
Symbol name.
This is an offset into the symbol string table.
st_info: u8
Symbol type and binding.
Use the st_bind
and st_type
methods to access this value.
st_other: u8
Symbol visibility.
Use the st_visibility
method to access this value.
st_shndx: U16<E>
Section index or one of the SHN_*
values.
st_value: U64<E>
Symbol value.
st_size: U64<E>
Symbol size.
Implementations
impl<E: Endian> Sym64<E>
[src]
pub fn st_bind(&self) -> u8
[src]
Get the st_bind
component of the st_info
field.
pub fn st_type(&self) -> u8
[src]
Get the st_type
component of the st_info
field.
pub fn set_st_info(&mut self, st_bind: u8, st_type: u8)
[src]
Set the st_info
field given the st_bind
and st_type
components.
pub fn st_visibility(&self) -> u8
[src]
Get the st_visibility
component of the st_info
field.
Trait Implementations
impl<E: Clone + Endian> Clone for Sym64<E>
[src]
fn clone(&self) -> Sym64<E>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<E: Copy + Endian> Copy for Sym64<E>
[src]
impl<E: Debug + Endian> Debug for Sym64<E>
[src]
impl<E: Endian> Pod for Sym64<E>
[src]
impl<Endian: Endian> Sym for Sym64<Endian>
[src]
type Word = u64
type Endian = Endian
fn st_name(&self, endian: Self::Endian) -> u32
[src]
fn st_info(&self) -> u8
[src]
fn st_bind(&self) -> u8
[src]
fn st_type(&self) -> u8
[src]
fn st_other(&self) -> u8
[src]
fn st_visibility(&self) -> u8
[src]
fn st_shndx(&self, endian: Self::Endian) -> u16
[src]
fn st_value(&self, endian: Self::Endian) -> Self::Word
[src]
fn st_size(&self, endian: Self::Endian) -> Self::Word
[src]
fn name<'data>(
&self,
endian: Self::Endian,
strings: StringTable<'data>
) -> Result<&'data [u8]>
[src]
&self,
endian: Self::Endian,
strings: StringTable<'data>
) -> Result<&'data [u8]>
Auto Trait Implementations
impl<E> Send for Sym64<E> where
E: Send,
E: Send,
impl<E> Sync for Sym64<E> where
E: Sync,
E: Sync,
impl<E> Unpin for Sym64<E> where
E: Unpin,
E: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,