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, 0);
let core = CoreDumpSection::new(reader).unwrap();
assert!(core.name == "test.wasm")
Fields§
§name: &'a str
The name of the process that created the core dump
Implementations§
source§impl<'a> CoreDumpSection<'a>
impl<'a> CoreDumpSection<'a>
sourcepub fn new(reader: BinaryReader<'a>) -> Result<CoreDumpSection<'a>>
pub fn new(reader: BinaryReader<'a>) -> Result<CoreDumpSection<'a>>
Parses this section from the provided reader
, derived from a custom
section.
Auto Trait Implementations§
impl<'a> Freeze for CoreDumpSection<'a>
impl<'a> RefUnwindSafe for CoreDumpSection<'a>
impl<'a> Send for CoreDumpSection<'a>
impl<'a> Sync for CoreDumpSection<'a>
impl<'a> Unpin for CoreDumpSection<'a>
impl<'a> UnwindSafe for CoreDumpSection<'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