1
2
3
4
5
6
7
8
9
10
use crate::SystemMessage;

/// A messages sent to a process.
#[derive(Debug)]
pub enum Message<T> {
    /// A message that was sent from another process.
    User(T),
    /// A message that was sent from the system.
    System(SystemMessage),
}