fraktor_actor_std_rs/
lib.rs

1#![deny(missing_docs)]
2#![deny(rustdoc::broken_intra_doc_links)]
3#![deny(clippy::unwrap_used, clippy::expect_used, clippy::print_stdout, clippy::dbg_macro)]
4#![deny(clippy::missing_errors_doc, clippy::missing_panics_doc)]
5#![deny(unreachable_pub)]
6
7//! Standard library helpers for fraktor runtime integrations.
8
9/// Actor primitives specialised for the standard toolbox.
10pub mod actor_prim;
11
12/// Messaging primitives specialised for the standard toolbox.
13pub mod messaging;
14
15/// Props and dispatcher configuration bindings for the standard toolbox.
16pub mod props;
17
18/// Mailbox bindings for the standard toolbox.
19pub mod mailbox;
20
21/// Actor system bindings for the standard toolbox.
22pub mod system;
23
24/// Event stream bindings for the standard toolbox.
25pub mod event_stream;
26
27/// DeadLetter bindings for the standard toolbox.
28pub mod dead_letter;
29
30/// Future utilities specialised for the standard toolbox.
31pub mod futures;
32
33/// Dispatcher utilities specialised for the standard runtime.
34pub mod dispatcher;
35/// Error utilities specialised for the standard toolbox.
36pub mod error;
37/// Typed actor utilities specialised for the standard toolbox runtime.
38pub mod typed;