Expand description
Actress - a simple actor library for Rust
Traits§
- Actor
- Trait required to be compatible as an actor
Functions§
- spawn
- Spawns an actor with the given struct instance. Returns a channel
Senderto communicate with the newly-spawned actor. - spawn_
with_ handle - Spawns an actor with the given struct instance. Returns a tuple of a channel
Senderto communicate with the newly-spawned actor as well as aJoinHandleto later join the actor.