[−][src]Crate meio
meio - lightweight async actor framework for Rust.
The main benefit of this framework is that gives you
tiny extension over tokio with full control.
It's designed for professional applications where you can't have strong restrictions and have keep flexibility.
Also this crate has zero-cost runtime. It just calls
async method of your type.
Modules
| lazy_watch | This module contains |
Macros
| wrapper | Creates a struct that will wrap |
Structs
| Address |
|
| Context |
|
| Envelope |
|
| Id | Unique Id of Actor's runtime that used to identify all senders for that actor. |
| Wrapper | Basic interface that just wraps |
Enums
| AddressError | Error type of interactions with |
| Term | Termination result of an |
Traits
| Action |
|
| ActionHandler | Type of |
| Actor | The main trait. Your structs have to implement it to
be compatible with |
| Interaction |
|
| InteractionHandler | Type of |
| Interface |
|
Functions
| spawn | Spawns |