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 ; |
2 | |
3 | use ; |
4 | use Value; |
5 | |
6 | use crate GiteratedObject; |
7 | |
8 | |
9 | type Success: Serialize + DeserializeOwned + Send; |
10 | type Failure: Serialize + DeserializeOwned + Send; |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | ; |
21 | |
22 | |
23 | type Success = Value; |
24 | |
25 | type Failure = Value; |
26 | |
27 | |
28 | /// The internal state of an operation, used to provide authentication information |
29 | /// and the ability to make giterated calls within handlers. |
30 | |
31 | ; |
32 |