[][src]Enum parity_wasm::elements::RelocationEntry

pub enum RelocationEntry {
    FunctionIndexLeb {
        offset: u32,
        index: u32,
    },
    TableIndexSleb {
        offset: u32,
        index: u32,
    },
    TableIndexI32 {
        offset: u32,
        index: u32,
    },
    MemoryAddressLeb {
        offset: u32,
        index: u32,
        addend: i32,
    },
    MemoryAddressSleb {
        offset: u32,
        index: u32,
        addend: i32,
    },
    MemoryAddressI32 {
        offset: u32,
        index: u32,
        addend: i32,
    },
    TypeIndexLeb {
        offset: u32,
        index: u32,
    },
    GlobalIndexLeb {
        offset: u32,
        index: u32,
    },
}

Relocation entry.

Variants

FunctionIndexLeb

Function index.

Fields of FunctionIndexLeb

offset: u32

Offset of the value to rewrite.

index: u32

Index of the function symbol in the symbol table.

TableIndexSleb

Function table index.

Fields of TableIndexSleb

offset: u32

Offset of the value to rewrite.

index: u32

Index of the function symbol in the symbol table.

TableIndexI32

Function table index.

Fields of TableIndexI32

offset: u32

Offset of the value to rewrite.

index: u32

Index of the function symbol in the symbol table.

MemoryAddressLeb

Linear memory index.

Fields of MemoryAddressLeb

offset: u32

Offset of the value to rewrite.

index: u32

Index of the data symbol in the symbol table.

addend: i32

Addend to add to the address.

MemoryAddressSleb

Linear memory index.

Fields of MemoryAddressSleb

offset: u32

Offset of the value to rewrite.

index: u32

Index of the data symbol in the symbol table.

addend: i32

Addend to add to the address.

MemoryAddressI32

Linear memory index.

Fields of MemoryAddressI32

offset: u32

Offset of the value to rewrite.

index: u32

Index of the data symbol in the symbol table.

addend: i32

Addend to add to the address.

TypeIndexLeb

Type table index.

Fields of TypeIndexLeb

offset: u32

Offset of the value to rewrite.

index: u32

Index of the type used.

GlobalIndexLeb

Global index.

Fields of GlobalIndexLeb

offset: u32

Offset of the value to rewrite.

index: u32

Index of the global symbol in the symbol table.

Trait Implementations

impl Deserialize for RelocationEntry[src]

type Error = Error

Serialization error produced by deserialization routine.

impl Serialize for RelocationEntry[src]

type Error = Error

Serialization error produced by serialization routine.

impl Copy for RelocationEntry[src]

impl PartialEq<RelocationEntry> for RelocationEntry[src]

impl Clone for RelocationEntry[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RelocationEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.