ice-threads 0.1.0

Lightweight Thread pool implementation.
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) trait Meltable {
    fn melt(self: Box<Self>);
}

impl<F: FnOnce()> Meltable for F {
    fn melt(self: Box<Self>) {
        (*self)()
    }
}