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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
use ;
use ;
/// Static contract for a bridge handler.
///
/// Defines optional matching and verification constants used by the
/// dispatch logic:
///
/// - [`MAGIC`](Self::MAGIC) filters incoming packets by magic number.
/// When `None`, the handler accepts packets regardless of magic.
/// - [`VERIFY_VALUE1`](Self::VERIFY_VALUE1)–[`VERIFY_VALUE4`](Self::VERIFY_VALUE4)
/// are written into the response registers after a successful
/// dispatch, allowing the guest to verify it is communicating with
/// the expected host handler.
/// A bridge handler for a specific request code.
///
/// Each handler is identified by its [`REQUEST`](Self::REQUEST) code and
/// optionally filtered by the [`MAGIC`](BridgeContract::MAGIC) from its
/// [`BridgeContract`]. Within a single request, handlers can further
/// distinguish sub-operations via [`BridgePacket::method()`].
///
/// The [`handle`](Self::handle) return value controls the dispatch outcome:
///
/// - `Some(response)` - request was handled; the response is written
/// back to guest registers.
/// - `None` - request code matched but no response was produced (e.g.,
/// an unrecognized method). The dispatcher treats this as an error.