1 unstable release

0.1.0 Mar 25, 2019

#12 in #movie

MIT/Apache

25KB

See movie.


lib.rs:

Example crate using movie library

Code of this crate:

use movie::actor;

actor! {
    SomeActor
        public_visibility: true,
        docs: /// This is an example actor.
        input: Ping,
        on_message:
            Ping => (),
}

Dependencies