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
82
83
84
85
86
use VecDeque;
use Arc;
use crateerr;
use crate;
use crateRequest;
/// A no-op middleware that simply calls the next middleware in the stack.
///
/// `Continue` acts as a neutral element in middleware composition. It performs
/// no work of its own and immediately forwards the request to `next`.
///
/// Although it may appear trivial, `Continue` is a useful building block for
/// implementing middleware combinators that provide custom branching logic
/// where a concrete fallback is required.
;
/// A linear, single-use execution cursor over middleware.
///
/// Middleware receives ownership of `next` and may either delegate to the
/// subsequent middleware in the deque or build a response and terminate
/// execution altogether.
///
/// `Next` has strict ownership semantics with a consuming API. When the "next"
/// middleware is called, ownership of `self` and `request` are transferred to
/// the middleware popped from the front of the deque. If the deque is empty,
/// `Next` returns a `404 Not Found` error.
///
/// Because `Next` owns the remaining middleware chain, choosing not to call it
/// is how middleware terminates or rejects a request. This makes control flow
/// explicit: downstream middleware only execute when an upstream middleware
/// delegates to them.
///
/// `Next` cannot be cloned or reused. This prevents middleware from executing
/// the same downstream chain more than once, speculatively observing rejected
/// requests, or continuing execution after a terminal middleware has already
/// produced a response.
/// Explicitly implement Drop to make a supply-chain risk a build-time error.
//
// Rationale:
//
// A malicious crate in the supply chain could `impl Drop for Next` and call
// the remaining middleware in the deque to see the outcome of a rejected
// request.