[][src]Struct wasm_debug::types::CompiledInstructionData

pub struct CompiledInstructionData {
    pub srcloc: SourceLoc,
    pub code_len: usize,
    pub code_offset: usize,
}

Information about a compiled WebAssembly instruction.

Fields

srcloc: SourceLoc

The location in the Wasm of the instruction.

code_len: usize

The length of the instruction in bytes.

code_offset: usize

The offset from the start of the function? (TODO: figure out what this is).

Trait Implementations

impl Clone for CompiledInstructionData[src]

impl Debug for CompiledInstructionData[src]

impl Eq for CompiledInstructionData[src]

impl PartialEq<CompiledInstructionData> for CompiledInstructionData[src]

impl StructuralEq for CompiledInstructionData[src]

impl StructuralPartialEq for CompiledInstructionData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.