pub struct MetaCont {
pub action: MetaAction,
pub saved_top: u32,
}Expand description
How to complete a VM instruction once its metamethod returns.
Fields§
§action: MetaActionWhat to do with the metamethod’s return value.
saved_top: u32the interrupted frame’s top to restore after the metamethod returns
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MetaCont
impl RefUnwindSafe for MetaCont
impl Send for MetaCont
impl Sync for MetaCont
impl Unpin for MetaCont
impl UnsafeUnpin for MetaCont
impl UnwindSafe for MetaCont
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