pub struct VMStatus<O, V> {
pub done: bool,
pub last_command: O,
pub value: Option<V>,
}Fields§
§done: bool§last_command: O§value: Option<V>Auto Trait Implementations§
impl<O, V> Freeze for VMStatus<O, V>
impl<O, V> RefUnwindSafe for VMStatus<O, V>where
O: RefUnwindSafe,
V: RefUnwindSafe,
impl<O, V> Send for VMStatus<O, V>
impl<O, V> Sync for VMStatus<O, V>
impl<O, V> Unpin for VMStatus<O, V>
impl<O, V> UnwindSafe for VMStatus<O, V>where
O: UnwindSafe,
V: UnwindSafe,
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