struct WorkerReturn {
release_memory_tube: Option<Tube>,
command_tube: Tube,
registered_evt_q: Option<SendTube>,
paused_queues: Option<PausedQueues>,
vm_memory_client: VmMemoryClient,
}Expand description
Stores data from the worker when it stops so that data can be re-used when the worker is restarted.
Fields§
§release_memory_tube: Option<Tube>§command_tube: Tube§registered_evt_q: Option<SendTube>§paused_queues: Option<PausedQueues>§vm_memory_client: VmMemoryClientAuto Trait Implementations§
impl Freeze for WorkerReturn
impl !RefUnwindSafe for WorkerReturn
impl Send for WorkerReturn
impl Sync for WorkerReturn
impl Unpin for WorkerReturn
impl !UnwindSafe for WorkerReturn
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