Struct cranelift_codegen::machinst::buffer::MachStackMap[][src]

pub struct MachStackMap {
    pub offset: CodeOffset,
    pub offset_end: CodeOffset,
    pub stack_map: StackMap,
}

Record of stack map metadata: stack offsets containing references.

Fields

offset: CodeOffset

The code offset at which this stack map applies.

offset_end: CodeOffset

The code offset just past the “end” of the instruction: that is, the offset of the first byte of the following instruction, or equivalently, the start offset plus the instruction length.

stack_map: StackMap

The stack map itself.

Trait Implementations

impl Clone for MachStackMap[src]

impl Debug for MachStackMap[src]

Auto Trait Implementations

impl RefUnwindSafe for MachStackMap

impl Send for MachStackMap

impl Sync for MachStackMap

impl Unpin for MachStackMap

impl UnwindSafe for MachStackMap

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<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.