Struct object::elf::Sym64 [−][src]
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][+]
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][+]
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,
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,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,