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 reader = BinaryReader::new(data, 0);
let modules_section = CoreDumpModulesSection::new(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.
Implementations§
source§impl<'a> CoreDumpModulesSection<'a>
impl<'a> CoreDumpModulesSection<'a>
sourcepub fn new(reader: BinaryReader<'a>) -> Result<CoreDumpModulesSection<'a>>
pub fn new(reader: BinaryReader<'a>) -> Result<CoreDumpModulesSection<'a>>
Parses this section from the provided reader
, derived from a custom
section.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CoreDumpModulesSection<'a>
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