mm1_proto_system/
link.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use mm1_address::address::Address;
use mm1_proto::Traversable;

#[derive(Debug, Traversable)]
pub struct TrapExit {
    pub enable: bool,
}

#[derive(Debug, Traversable)]
pub struct Exited {
    pub peer:        Address,
    pub normal_exit: bool,
}

#[derive(Debug, Traversable)]
pub struct Link {
    pub peer: Address,
}

pub struct Unlink {
    pub peer: Address,
}