fimxi 0.1.0

A multithreaded actor pattern framework
Documentation
1
2
3
4
5
6
7
8
9
pub trait FnBox {
    fn call_box(self: Box<Self>);
}

impl<F: FnOnce()> FnBox for F {
    fn call_box(self: Box<F>) {
        (*self)()
    }
}