Struct cranelift_module::RelocRecord [−][src]
pub struct RelocRecord {
pub offset: CodeOffset,
pub reloc: Reloc,
pub name: ExternalName,
pub addend: Addend,
}Expand description
A record of a relocation to perform.
Fields
offset: CodeOffsetWhere in the generated code this relocation is to be applied.
reloc: RelocThe kind of relocation this represents.
name: ExternalNameWhat symbol we’re relocating against.
addend: AddendThe offset to add to the relocation.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RelocRecord
impl Send for RelocRecord
impl Sync for RelocRecord
impl Unpin for RelocRecord
impl UnwindSafe for RelocRecord
Blanket Implementations
Mutably borrows from an owned value. Read more