[][src]Crate movie_example

Example crate using movie library

Code of this crate:

This example is not tested
use movie::actor;

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

Modules

SomeActor

This is an example actor.