pub enum WorkerReply {
Report(InspectorReport),
Panic,
Finished,
}Variants§
Report(InspectorReport)
The worker is reporting statistics
Panic
The worker has panicked
Finished
The worker has finished
Auto Trait Implementations§
impl Freeze for WorkerReply
impl RefUnwindSafe for WorkerReply
impl Send for WorkerReply
impl Sync for WorkerReply
impl Unpin for WorkerReply
impl UnwindSafe for WorkerReply
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