object::read

Struct Symbol

Source
pub struct Symbol<'data, 'file, R = &'data [u8]>
where R: ReadRef<'data>, 'data: 'file,
{ /* private fields */ }
Expand description

A symbol table entry.

Trait Implementations§

Source§

impl<'data, 'file, R: ReadRef<'data>> Debug for Symbol<'data, 'file, R>

Source§

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

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

impl<'data, 'file, R: ReadRef<'data>> ObjectSymbol<'data> for Symbol<'data, 'file, R>

Source§

fn index(&self) -> SymbolIndex

The index of the symbol.
Source§

fn name_bytes(&self) -> Result<&'data [u8]>

The name of the symbol.
Source§

fn name(&self) -> Result<&'data str>

The name of the symbol. Read more
Source§

fn address(&self) -> u64

The address of the symbol. May be zero if the address is unknown.
Source§

fn size(&self) -> u64

The size of the symbol. May be zero if the size is unknown.
Source§

fn kind(&self) -> SymbolKind

Return the kind of this symbol.
Source§

fn section(&self) -> SymbolSection

Returns the section where the symbol is defined.
Source§

fn is_undefined(&self) -> bool

Return true if the symbol is undefined.
Source§

fn is_definition(&self) -> bool

Return true if the symbol is a definition of a function or data object that has a known address.
Source§

fn is_common(&self) -> bool

Return true if the symbol is common data. Read more
Source§

fn is_weak(&self) -> bool

Return true if the symbol is weak.
Source§

fn scope(&self) -> SymbolScope

Returns the symbol scope.
Source§

fn is_global(&self) -> bool

Return true if the symbol visible outside of the compilation unit. Read more
Source§

fn is_local(&self) -> bool

Return true if the symbol is only visible within the compilation unit.
Source§

fn flags(&self) -> SymbolFlags<SectionIndex>

Symbol flags that are specific to each file format.
Source§

fn section_index(&self) -> Option<SectionIndex>

Returns the section index for the section containing this symbol. Read more

Auto Trait Implementations§

§

impl<'data, 'file, R> Freeze for Symbol<'data, 'file, R>

§

impl<'data, 'file, R> RefUnwindSafe for Symbol<'data, 'file, R>
where R: RefUnwindSafe,

§

impl<'data, 'file, R> Send for Symbol<'data, 'file, R>
where R: Send + Sync,

§

impl<'data, 'file, R> Sync for Symbol<'data, 'file, R>
where R: Sync,

§

impl<'data, 'file, R> Unpin for Symbol<'data, 'file, R>
where R: Unpin,

§

impl<'data, 'file, R> UnwindSafe for Symbol<'data, 'file, R>

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.