Struct wasmparser::CoreDumpModulesSection
source · pub struct CoreDumpModulesSection<'a> {
pub modules: Vec<&'a str>,
}
Expand description
The data portion of a “coremodules” custom section. This contains a vec of module names that will be referenced by index by other coredump sections.
§Example
use wasmparser::{ BinaryReader, CoreDumpModulesSection, FromReader, Result };
let data: &[u8] = &[0x01, 0x00, 0x04, 0x74, 0x65, 0x73, 0x74];
let mut reader = BinaryReader::new(data);
let modules_section = CoreDumpModulesSection::from_reader(&mut reader).unwrap();
assert!(modules_section.modules[0] == "test")
Fields§
§modules: Vec<&'a str>
A list of module names, which may be URLs, file paths, or other identifiers for the module.
Trait Implementations§
source§impl<'a> Debug for CoreDumpModulesSection<'a>
impl<'a> Debug for CoreDumpModulesSection<'a>
source§impl<'a> FromReader<'a> for CoreDumpModulesSection<'a>
impl<'a> FromReader<'a> for CoreDumpModulesSection<'a>
source§fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.Auto Trait Implementations§
impl<'a> RefUnwindSafe for CoreDumpModulesSection<'a>
impl<'a> Send for CoreDumpModulesSection<'a>
impl<'a> Sync for CoreDumpModulesSection<'a>
impl<'a> Unpin for CoreDumpModulesSection<'a>
impl<'a> UnwindSafe for CoreDumpModulesSection<'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