Struct cranelift_codegen::MachStackMap
source · [−]pub struct MachStackMap {
pub offset: CodeOffset,
pub offset_end: CodeOffset,
pub stack_map: StackMap,
}
Expand description
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
sourceimpl Clone for MachStackMap
impl Clone for MachStackMap
sourcefn clone(&self) -> MachStackMap
fn clone(&self) -> MachStackMap
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MachStackMap
impl Debug for MachStackMap
sourceimpl PartialEq<MachStackMap> for MachStackMap
impl PartialEq<MachStackMap> for MachStackMap
sourcefn eq(&self, other: &MachStackMap) -> bool
fn eq(&self, other: &MachStackMap) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MachStackMap) -> bool
fn ne(&self, other: &MachStackMap) -> bool
This method tests for !=
.
impl StructuralPartialEq for MachStackMap
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more