1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Module containing all the different parts of the actor and their spawn functions.
//! The most important of these are: [Child], [ChildPool], [Address] and [Inbox] with
//! [spawn], [spawn_one] and [spawn_many]. Ready documentation on their respective parts
//! for more information.
mod address;
mod child;
mod child_pool;
mod inbox;
mod spawning;
pub use address::*;
pub use child::*;
pub use child_pool::*;
pub use inbox::*;
pub use spawning::*;