Struct cranelift_module::DataDescription
source · [−]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)>,
pub custom_segment_section: Option<(String, String)>,
pub align: Option<u64>,
}
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.
custom_segment_section: Option<(String, String)>
Object file section
align: Option<u64>
Alignment in bytes. None
means that the default alignment of the respective module should
be used.
Implementations
sourceimpl DataDescription
impl DataDescription
sourcepub fn all_relocs<'a>(
&'a self,
pointer_reloc: Reloc
) -> impl Iterator<Item = MachReloc> + 'a
pub fn all_relocs<'a>(
&'a self,
pointer_reloc: Reloc
) -> impl Iterator<Item = MachReloc> + 'a
An iterator over all relocations of the data object.
Trait Implementations
sourceimpl Clone for DataDescription
impl Clone for DataDescription
sourcefn clone(&self) -> DataDescription
fn clone(&self) -> DataDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for DataDescription
impl Send for DataDescription
impl Sync for DataDescription
impl Unpin for DataDescription
impl UnwindSafe for DataDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more