[][src]Struct blackhole::OneTime

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

A job that runs once

Panics

It will panic if run more than once.

Examples

use blackhole::{BlackHole, OneTime};

let black_hole = BlackHole::make(4, 8).unwrap();
for i in 0..10 {
    match black_hole.throw(OneTime::new(move || println!("{}", i))) {
        Ok(job) => if let Some(job) = job {
            blackhole::run_to_end(job);
        },
        Err(err) => eprintln!("BlackHole... exploded: {}", err),
    };
}
black_hole.escape_on_idle().unwrap();

Implementations

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

pub fn new(f: F) -> Self[src]

Trait Implementations

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

impl<F> Job for OneTime<F> where
    F: FnOnce() + Send + 'static, 
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for OneTime<F> where
    F: RefUnwindSafe

impl<F> Send for OneTime<F>

impl<F> Sync for OneTime<F> where
    F: Sync

impl<F> Unpin for OneTime<F> where
    F: Unpin

impl<F> UnwindSafe for OneTime<F> where
    F: UnwindSafe

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.