1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use anpp::Packet;
use scroll_derive::*;

/// Something which can handle a request and generate a response.
pub trait Handler<M> {
    /// The type of response.
    type Response;

    fn handle(&mut self, msg: M) -> Self::Response;
}

/// Acknowledge a request without returning any extra information.
#[derive(
    Debug,
    Default,
    Copy,
    Clone,
    PartialEq,
    Eq,
    Pread,
    Pwrite,
    IOread,
    IOwrite,
    SizeWith,
)]
pub struct Ack {}

impl Ack {
    /// The ID used when encoded as a [`Packet`].
    pub const ID: u8 = 0;

    pub const fn new() -> Self { Ack {} }
}

impl From<Ack> for Packet {
    fn from(_: Ack) -> Packet { Packet::new(Ack::ID) }
}

/// The message was not acknowledged.
#[derive(
    Debug,
    Default,
    Copy,
    Clone,
    PartialEq,
    Eq,
    Pread,
    Pwrite,
    IOread,
    IOwrite,
    SizeWith,
)]
pub struct Nack {}

impl Nack {
    /// The ID used when encoded as a [`Packet`].
    pub const ID: u8 = 1;

    pub const fn new() -> Self { Nack {} }
}

impl From<Nack> for Packet {
    fn from(_: Nack) -> Packet { Packet::new(Nack::ID) }
}