pub enum ModuleRelocTarget {
User {
namespace: u32,
index: u32,
},
LibCall(LibCall),
KnownSymbol(KnownSymbol),
FunctionOffset(FuncId, CodeOffset),
}
Expand description
A translated ExternalName
into something global we can handle.
Variants§
User
User defined function, converted from ExternalName::User
.
LibCall(LibCall)
Call into a library function.
KnownSymbol(KnownSymbol)
Symbols known to the linker.
FunctionOffset(FuncId, CodeOffset)
A offset inside a function
Implementations§
Trait Implementations§
Source§impl Clone for ModuleRelocTarget
impl Clone for ModuleRelocTarget
Source§fn clone(&self) -> ModuleRelocTarget
fn clone(&self) -> ModuleRelocTarget
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModuleRelocTarget
impl Debug for ModuleRelocTarget
Source§impl Display for ModuleRelocTarget
impl Display for ModuleRelocTarget
Source§impl From<DataId> for ModuleRelocTarget
Data identifiers are namespace 1 in ir::ExternalName
impl From<DataId> for ModuleRelocTarget
Data identifiers are namespace 1 in ir::ExternalName
Source§impl From<FuncId> for ModuleRelocTarget
Function identifiers are namespace 0 in ir::ExternalName
impl From<FuncId> for ModuleRelocTarget
Function identifiers are namespace 0 in ir::ExternalName
Source§impl From<FuncOrDataId> for ModuleRelocTarget
Mapping to ModuleExtName
is trivial based on the FuncId
and DataId
mapping.
impl From<FuncOrDataId> for ModuleRelocTarget
Mapping to ModuleExtName
is trivial based on the FuncId
and DataId
mapping.
Source§fn from(id: FuncOrDataId) -> Self
fn from(id: FuncOrDataId) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ModuleRelocTarget
impl RefUnwindSafe for ModuleRelocTarget
impl Send for ModuleRelocTarget
impl Sync for ModuleRelocTarget
impl Unpin for ModuleRelocTarget
impl UnwindSafe for ModuleRelocTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more