improv 1.0.0-beta.1

Actor microframework
Documentation
use super::prelude::*;

pub(super) trait Tell<M: Message<Response = ()>> {
    fn tell(&self, msg: M) -> Result<(), Disconnected>;
}