[][src]Struct drop_worker::DropWorker

pub struct DropWorker<T> { /* fields omitted */ }

Provides a worker thread that can receive structs of type T. When this instance is dropped, it will signal the worker thread to stop and wait until joined.

Implementations

impl<T: Send + 'static> DropWorker<T>[src]

pub fn new<F: Fn(Receiver<T>) + Send + 'static>(func: F) -> Self[src]

Spawns a new worker thread with the given function. The function must accept a Receiver.

Methods from Deref<Target = ManuallyDrop<Sender<T>>>

Trait Implementations

impl<T: Send + 'static> Deref for DropWorker<T>[src]

type Target = ManuallyDrop<Sender<T>>

The resulting type after dereferencing.

impl<T> Drop for DropWorker<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for DropWorker<T>[src]

impl<T> Send for DropWorker<T> where
    T: Send
[src]

impl<T> !Sync for DropWorker<T>[src]

impl<T> Unpin for DropWorker<T>[src]

impl<T> !UnwindSafe for DropWorker<T>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.