#[repr(C, packed(1))]pub struct CompactStackFrame {
pub opcode: u8,
pub flags: u32,
pub script_offset: u16,
pub stack_height: u16,
}Expand description
Memory layout optimization: Compact stack frame
Compact stack frame for script execution optimization Optimized stack frame structure for cache locality.
Fields§
§opcode: u8§flags: u32§script_offset: u16§stack_height: u16Implementations§
Auto Trait Implementations§
impl Freeze for CompactStackFrame
impl RefUnwindSafe for CompactStackFrame
impl Send for CompactStackFrame
impl Sync for CompactStackFrame
impl Unpin for CompactStackFrame
impl UnsafeUnpin for CompactStackFrame
impl UnwindSafe for CompactStackFrame
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more