cyfs_lib/root_state/
request.rs1use super::output_request::*;
2
3pub type RootStateRequestCommon = RootStateOutputRequestCommon;
4
5pub type RootStateGetCurrentRootRequest = RootStateGetCurrentRootOutputRequest;
6pub type RootStateGetCurrentRootResponse = RootStateGetCurrentRootOutputResponse;
7
8pub type RootStateCreateOpEnvRequest = RootStateCreateOpEnvOutputRequest;
9pub type RootStateCreateOpEnvResponse = RootStateCreateOpEnvOutputResponse;
10
11pub type OpEnvRequestCommon = OpEnvOutputRequestCommon;
12
13pub type OpEnvLoadRequest = OpEnvLoadOutputRequest;
14pub type OpEnvLoadByPathRequest = OpEnvLoadByPathOutputRequest;
15pub type OpEnvCreateNewRequest = OpEnvCreateNewOutputRequest;
16
17pub type OpEnvLockRequest = OpEnvLockOutputRequest;
18
19pub type OpEnvCommitRequest = OpEnvCommitOutputRequest;
20pub type OpEnvCommitResponse = OpEnvCommitOutputResponse;
21
22pub type OpEnvAbortRequest = OpEnvAbortOutputRequest;
23
24pub type OpEnvMetadataRequest = OpEnvMetadataOutputRequest;
25pub type OpEnvMetadataResponse = OpEnvMetadataOutputResponse;
26
27pub type OpEnvGetByKeyRequest = OpEnvGetByKeyOutputRequest;
28pub type OpEnvGetByKeyResponse = OpEnvGetByKeyOutputResponse;
29
30pub type OpEnvInsertWithKeyRequest = OpEnvInsertWithKeyOutputRequest;
31
32pub type OpEnvSetWithKeyRequest = OpEnvSetWithKeyOutputRequest;
33pub type OpEnvSetWithKeyResponse = OpEnvSetWithKeyOutputResponse;
34
35pub type OpEnvRemoveWithKeyRequest = OpEnvRemoveWithKeyOutputRequest;
36pub type OpEnvRemoveWithKeyResponse = OpEnvRemoveWithKeyOutputResponse;
37
38pub type OpEnvContainsRequest = OpEnvContainsOutputRequest;
39pub type OpEnvContainsResponse = OpEnvContainsOutputResponse;
40
41pub type OpEnvInsertRequest = OpEnvInsertOutputRequest;
42pub type OpEnvInsertResponse = OpEnvInsertOutputResponse;
43
44pub type OpEnvRemoveRequest = OpEnvRemoveOutputRequest;
45pub type OpEnvRemoveResponse = OpEnvRemoveOutputResponse;
46
47pub type RootStateAccessorGetObjectByPathRequest = RootStateAccessorGetObjectByPathOutputRequest;
48pub type RootStateAccessorGetObjectByPathResponse = RootStateAccessorGetObjectByPathOutputResponse;
49
50pub type RootStateAccessorListRequest = RootStateAccessorListOutputRequest;
51pub type RootStateAccessorListResponse = RootStateAccessorListOutputResponse;