Struct object::read::macho::SymbolTable

source ·
pub struct SymbolTable<'data, Mach: MachHeader, R = &'data [u8]>
where R: ReadRef<'data>,
{ /* private fields */ }
Expand description

A table of symbol entries in a Mach-O file.

Also includes the string table used for the symbol names.

Returned by macho::SymtabCommand::symbols.

Implementations§

source§

impl<'data, Mach: MachHeader, R: ReadRef<'data>> SymbolTable<'data, Mach, R>

source

pub fn strings(&self) -> StringTable<'data, R>

Return the string table used for the symbol names.

source

pub fn iter(&self) -> Iter<'data, Mach::Nlist>

Iterate over the symbols.

source

pub fn is_empty(&self) -> bool

Return true if the symbol table is empty.

source

pub fn len(&self) -> usize

The number of symbols.

source

pub fn symbol(&self, index: SymbolIndex) -> Result<&'data Mach::Nlist>

Return the symbol at the given index.

source

pub fn map<Entry: SymbolMapEntry, F: Fn(&'data Mach::Nlist) -> Option<Entry>>( &self, f: F ) -> SymbolMap<Entry>

Construct a map from addresses to a user-defined map entry.

source

pub fn object_map(&self, endian: Mach::Endian) -> ObjectMap<'data>

Construct a map from addresses to symbol names and object file names.

Trait Implementations§

source§

impl<'data, Mach: Clone + MachHeader, R> Clone for SymbolTable<'data, Mach, R>
where R: ReadRef<'data> + Clone, Mach::Nlist: Clone,

source§

fn clone(&self) -> SymbolTable<'data, Mach, R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'data, Mach: Debug + MachHeader, R> Debug for SymbolTable<'data, Mach, R>
where R: ReadRef<'data> + Debug, Mach::Nlist: Debug,

source§

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

Formats the value using the given formatter. Read more
source§

impl<'data, Mach: MachHeader, R: ReadRef<'data>> Default for SymbolTable<'data, Mach, R>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'data, Mach: Copy + MachHeader, R> Copy for SymbolTable<'data, Mach, R>
where R: ReadRef<'data> + Copy, Mach::Nlist: Copy,

Auto Trait Implementations§

§

impl<'data, Mach, R> Freeze for SymbolTable<'data, Mach, R>
where R: Freeze,

§

impl<'data, Mach, R> RefUnwindSafe for SymbolTable<'data, Mach, R>

§

impl<'data, Mach, R> Send for SymbolTable<'data, Mach, R>
where <Mach as MachHeader>::Nlist: Sync, R: Send,

§

impl<'data, Mach, R> Sync for SymbolTable<'data, Mach, R>
where <Mach as MachHeader>::Nlist: Sync, R: Sync,

§

impl<'data, Mach, R> Unpin for SymbolTable<'data, Mach, R>
where R: Unpin,

§

impl<'data, Mach, R> UnwindSafe for SymbolTable<'data, Mach, R>
where <Mach as MachHeader>::Nlist: RefUnwindSafe, R: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.