pub struct QuitCont {
pub exit_code: i32,
}
Expand description
Continuation that represents the end of work of TVM.
Fields§
§exit_code: i32
Trait Implementations§
Source§impl Cont for QuitCont
impl Cont for QuitCont
fn rc_into_dyn(self: Rc<Self>) -> Rc<dyn StackValue>
fn as_stack_value(&self) -> &dyn StackValue
fn fmt(&self, f: &mut Formatter<'_>) -> Result
fn jump( self: Rc<Self>, _: &mut VmState<'_>, exit_code: &mut i32, ) -> VmResult<Option<RcCont>>
fn get_control_data(&self) -> Option<&ControlData>
fn get_control_data_mut(&mut self) -> Option<&mut ControlData>
Source§impl Store for QuitCont
impl Store for QuitCont
Source§fn store_into(
&self,
builder: &mut CellBuilder,
_: &dyn CellContext,
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, _: &dyn CellContext, ) -> Result<(), Error>
Tries to store itself into the cell builder.
impl Copy for QuitCont
Auto Trait Implementations§
impl Freeze for QuitCont
impl RefUnwindSafe for QuitCont
impl Send for QuitCont
impl Sync for QuitCont
impl Unpin for QuitCont
impl UnwindSafe for QuitCont
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