pub enum VmExit {
Bool(bool),
Decision(Decision),
}Expand description
VM exit value, allowing either a boolean gate or an emitted decision.
Variants§
Trait Implementations§
impl Copy for VmExit
impl Eq for VmExit
impl StructuralPartialEq for VmExit
Auto Trait Implementations§
impl Freeze for VmExit
impl RefUnwindSafe for VmExit
impl Send for VmExit
impl Sync for VmExit
impl Unpin for VmExit
impl UnsafeUnpin for VmExit
impl UnwindSafe for VmExit
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