nexus-acto-rs 0.4.2

A Rust crate for Actors
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::actor::actor::Pid;

#[derive(Debug, Clone, PartialEq)]
pub struct Watch {
  pub watcher: Option<Pid>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct Unwatch {
  pub watcher: Option<Pid>,
}