pub enum Isolated {
Isolated,
None,
}
Expand description
Indicating the kind of isolation that is present for a frame.
Variants§
Isolated
The frame is isolated, once pop it will cause the execution to complete.
None
No isolation is present, the vm will continue executing.
Trait Implementations§
impl Copy for Isolated
Auto Trait Implementations§
impl Freeze for Isolated
impl RefUnwindSafe for Isolated
impl Send for Isolated
impl Sync for Isolated
impl Unpin for Isolated
impl UnwindSafe for Isolated
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