pub struct ProcessInfo<T> {
    pub tx: Sender<T>,
    pub handle: JoinHandle<()>,
}Fields§
§tx: Sender<T>§handle: JoinHandle<()>Implementations§
Source§impl<T> ProcessInfo<T>
 
impl<T> ProcessInfo<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ProcessInfo<T>
impl<T> !RefUnwindSafe for ProcessInfo<T>
impl<T> Send for ProcessInfo<T>where
    T: Send,
impl<T> Sync for ProcessInfo<T>where
    T: Send,
impl<T> Unpin for ProcessInfo<T>
impl<T> !UnwindSafe for ProcessInfo<T>
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