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>

source§

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> 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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.