Struct wasmparser::CoreDumpInstancesSection
source · pub struct CoreDumpInstancesSection {
pub instances: Vec<CoreDumpInstance>,
}
Expand description
A custom section representing the instances involved in a given coredump
Fields§
§instances: Vec<CoreDumpInstance>
The instances for the coredump
Trait Implementations§
source§impl<'a> FromReader<'a> for CoreDumpInstancesSection
impl<'a> FromReader<'a> for CoreDumpInstancesSection
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.