1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![doc(html_root_url = "https://movie.pzmarzly.pl")]

//! # Example crate using `movie` library
//!
//! Code of this crate:
//!
//! ```rust,ignore
//! use movie::actor;
//!
//! actor! {
//!     SomeActor
//!         public_visibility: true,
//!         docs: /// This is an example actor.
//!         input: Ping,
//!         on_message:
//!             Ping => (),
//! }
//! ```

use movie::actor;

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