[][src]Struct cranelift_module::DataDescription

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

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.