bottle 0.1.0

Actor model framework for Rust.
1
2
3
4
/// Signals.
pub trait Signal: 'static + Send {
    type Response: Send;
}