cyfs_lib/rmeta/
request.rs1use super::output_request::*;
2
3pub type MetaRequestCommon = MetaOutputRequestCommon;
4
5pub type GlobalStateMetaAddAccessRequest = GlobalStateMetaAddAccessOutputRequest;
6pub type GlobalStateMetaAddAccessResponse = GlobalStateMetaAddAccessOutputResponse;
7
8pub type GlobalStateMetaRemoveAccessRequest = GlobalStateMetaRemoveAccessOutputRequest;
9pub type GlobalStateMetaRemoveAccessResponse = GlobalStateMetaRemoveAccessOutputResponse;
10
11pub type GlobalStateMetaClearAccessRequest = GlobalStateMetaClearAccessOutputRequest;
12pub type GlobalStateMetaClearAccessResponse = GlobalStateMetaClearAccessOutputResponse;
13
14pub type GlobalStateMetaAddLinkRequest = GlobalStateMetaAddLinkOutputRequest;
15pub type GlobalStateMetaAddLinkResponse = GlobalStateMetaAddLinkOutputResponse;
16
17pub type GlobalStateMetaRemoveLinkRequest = GlobalStateMetaRemoveLinkOutputRequest;
18pub type GlobalStateMetaRemoveLinkResponse = GlobalStateMetaRemoveLinkOutputResponse;
19
20pub type GlobalStateMetaClearLinkRequest = GlobalStateMetaClearLinkOutputRequest;
21pub type GlobalStateMetaClearLinkResponse = GlobalStateMetaClearLinkOutputResponse;
22
23pub type GlobalStateMetaAddObjectMetaRequest = GlobalStateMetaAddObjectMetaOutputRequest;
24pub type GlobalStateMetaAddObjectMetaResponse = GlobalStateMetaAddObjectMetaOutputResponse;
25
26pub type GlobalStateMetaRemoveObjectMetaRequest = GlobalStateMetaRemoveObjectMetaOutputRequest;
27pub type GlobalStateMetaRemoveObjectMetaResponse = GlobalStateMetaRemoveObjectMetaOutputResponse;
28
29pub type GlobalStateMetaClearObjectMetaRequest = GlobalStateMetaClearObjectMetaOutputRequest;
30pub type GlobalStateMetaClearObjectMetaResponse = GlobalStateMetaClearObjectMetaOutputResponse;
31
32pub type GlobalStateMetaAddPathConfigRequest = GlobalStateMetaAddPathConfigOutputRequest;
33pub type GlobalStateMetaAddPathConfigResponse = GlobalStateMetaAddPathConfigOutputResponse;
34
35pub type GlobalStateMetaRemovePathConfigRequest = GlobalStateMetaRemovePathConfigOutputRequest;
36pub type GlobalStateMetaRemovePathConfigResponse = GlobalStateMetaRemovePathConfigOutputResponse;
37
38pub type GlobalStateMetaClearPathConfigRequest = GlobalStateMetaClearPathConfigOutputRequest;
39pub type GlobalStateMetaClearPathConfigResponse = GlobalStateMetaClearPathConfigOutputResponse;