Struct wasmtime_environ::wasmparser::RelocSectionReader
source · pub struct RelocSectionReader<'a> { /* private fields */ }
Expand description
Reader for reloc.* sections as defined by https://github.com/WebAssembly/tool-conventions/blob/main/Linking.md#relocation-sections.
Implementations§
source§impl<'a> RelocSectionReader<'a>
impl<'a> RelocSectionReader<'a>
sourcepub fn new(
reader: BinaryReader<'a>,
) -> Result<RelocSectionReader<'a>, BinaryReaderError>
pub fn new( reader: BinaryReader<'a>, ) -> Result<RelocSectionReader<'a>, BinaryReaderError>
Creates a new reader for a reloc.*
section starting at
original_position
within the wasm file.
sourcepub fn section_index(&self) -> u32
pub fn section_index(&self) -> u32
Index of section to which the relocations apply.
sourcepub fn entries(&self) -> SectionLimited<'a, RelocationEntry>
pub fn entries(&self) -> SectionLimited<'a, RelocationEntry>
The relocation entries.
Trait Implementations§
source§impl<'a> Clone for RelocSectionReader<'a>
impl<'a> Clone for RelocSectionReader<'a>
source§fn clone(&self) -> RelocSectionReader<'a>
fn clone(&self) -> RelocSectionReader<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for RelocSectionReader<'a>
impl<'a> RefUnwindSafe for RelocSectionReader<'a>
impl<'a> Send for RelocSectionReader<'a>
impl<'a> Sync for RelocSectionReader<'a>
impl<'a> Unpin for RelocSectionReader<'a>
impl<'a> UnwindSafe for RelocSectionReader<'a>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)