Finish unified stack refactor.
Adds support for operation state, which will be used to pass authentication information around. Added generic backend that uses a channel to communicate with a typed backend.
parent: tbd commit: d15581c
1 | use Any; |
2 | |
3 | /// A type which can be passed into a stateful handler. |
4 | /// |
5 | /// # Trait Bounds |
6 | /// This trait is bound on `Send + Sync`, as well as `Clone`. Handler states are |
7 | /// cloned many times, and should be inexpensive to clone. |
8 | /// |
9 | /// # Blanket Impl |
10 | /// This trait is blanket-impl'd on any type that meets the requirements. You do not need |
11 | /// to manually mark your state types with it. |
12 | |
13 | |
14 | |
15 |