pub struct CodeRelocation {
pub offset: u32,
pub symbol: String,
pub kind: RelocKind,
}Fields§
§offset: u32Byte offset within the function’s machine code where the reloc applies
symbol: StringTarget symbol name (e.g., “__meld_dispatch_import”, “__synth_wasm_data”)
kind: RelocKindWhich ARM relocation type to emit for this site.
Trait Implementations§
Source§impl Clone for CodeRelocation
impl Clone for CodeRelocation
Source§fn clone(&self) -> CodeRelocation
fn clone(&self) -> CodeRelocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CodeRelocation
impl Debug for CodeRelocation
impl Eq for CodeRelocation
Source§impl PartialEq for CodeRelocation
impl PartialEq for CodeRelocation
Source§fn eq(&self, other: &CodeRelocation) -> bool
fn eq(&self, other: &CodeRelocation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodeRelocation
Auto Trait Implementations§
impl Freeze for CodeRelocation
impl RefUnwindSafe for CodeRelocation
impl Send for CodeRelocation
impl Sync for CodeRelocation
impl Unpin for CodeRelocation
impl UnsafeUnpin for CodeRelocation
impl UnwindSafe for CodeRelocation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.