Struct wasmparser::CoreDumpSection
source · pub struct CoreDumpSection<'a> {
pub name: &'a str,
}
Expand description
The data portion of a custom section representing a core dump. Per the tool-conventions repo, this section just specifies the executable name that the core dump came from while the rest of the core dump information is contained in a corestack custom section
Examples
use wasmparser::{ BinaryReader, CoreDumpSection, FromReader, Result };
let data: &[u8] = &[0x00, 0x09, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x77, 0x61,
0x73, 0x6d];
let mut reader = BinaryReader::new(data);
let core = CoreDumpSection::from_reader(&mut reader).unwrap();
assert!(core.name == "test.wasm")
Fields§
§name: &'a str
The name of the process that created the core dump
Trait Implementations§
source§impl<'a> FromReader<'a> for CoreDumpSection<'a>
impl<'a> FromReader<'a> for CoreDumpSection<'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.