pub struct DataDescription {
    pub init: Init,
    pub function_decls: PrimaryMap<FuncRef, ExternalName>,
    pub data_decls: PrimaryMap<GlobalValue, ExternalName>,
    pub function_relocs: Vec<(CodeOffset, FuncRef)>,
    pub data_relocs: Vec<(CodeOffset, GlobalValue, Addend)>,
}
Expand description

A description of a data object.

Fields

init: Init

How the data should be initialized.

function_decls: PrimaryMap<FuncRef, ExternalName>

External function declarations.

data_decls: PrimaryMap<GlobalValue, ExternalName>

External data object declarations.

function_relocs: Vec<(CodeOffset, FuncRef)>

Function addresses to write at specified offsets.

data_relocs: Vec<(CodeOffset, GlobalValue, Addend)>

Data addresses to write at specified offsets.

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

Returns the argument unchanged.

Calls U::from(self).

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

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.