Struct object::read::wasm::WasmSymbol

source ·
pub struct WasmSymbol<'data, 'file> { /* private fields */ }
Expand description

A symbol in a WasmFile.

Most functionality is provided by the ObjectSymbol trait implementation.

Trait Implementations§

source§

impl<'data, 'file> Clone for WasmSymbol<'data, 'file>

source§

fn clone(&self) -> WasmSymbol<'data, 'file>

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, 'file> Debug for WasmSymbol<'data, 'file>

source§

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

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

impl<'data, 'file> ObjectSymbol<'data> for WasmSymbol<'data, 'file>

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. Read more
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, SymbolIndex>

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
source§

impl<'data, 'file> Copy for WasmSymbol<'data, 'file>

Auto Trait Implementations§

§

impl<'data, 'file> Freeze for WasmSymbol<'data, 'file>

§

impl<'data, 'file> RefUnwindSafe for WasmSymbol<'data, 'file>

§

impl<'data, 'file> Send for WasmSymbol<'data, 'file>

§

impl<'data, 'file> Sync for WasmSymbol<'data, 'file>

§

impl<'data, 'file> Unpin for WasmSymbol<'data, 'file>

§

impl<'data, 'file> UnwindSafe for WasmSymbol<'data, 'file>

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.