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

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,
    },
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Serialization error produced by deserialization routine.

Deserialize type from serial i/o

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialization error produced by serialization routine.

Serialize type to serial i/o

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.