[][src]Struct blackhole::Blackhole

pub struct Blackhole<F> where
    F: FnOnce(),
    F: Send + 'static + UnwindSafe
{ /* fields omitted */ }

Methods

impl<F> Blackhole<F> where
    F: FnOnce(),
    F: Send + 'static + UnwindSafe
[src]

pub fn new(active_limit: u64, queue_limit: usize) -> Result<Self>[src]

pub fn throw(&self, job: F) -> bool[src]

pub fn escape(self) -> bool[src]

Escapes the blackhole

Notes

  • New jobs and all waiting jobs are discarded.
  • Active jobs are left untouched. They will be discarded by system when the program's main thread exits.

pub fn escape_on_idle(self) -> Result<()>[src]

Trait Implementations

impl<F: Debug> Debug for Blackhole<F> where
    F: FnOnce(),
    F: Send + 'static + UnwindSafe
[src]

Auto Trait Implementations

impl<F> Send for Blackhole<F>

impl<F> !Sync for Blackhole<F>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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