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
#![allow(clippy::all, clippy::pedantic, dead_code)]
// Daml Ledger API v2 protobuf definitions, generated by tonic-build from
// resources/protobuf/com/daml/ledger/api/v2/**.
pub mod com {
pub mod daml {
pub mod ledger {
pub mod api {
pub mod v2 {
include!(concat!(env!("OUT_DIR"), "/com.daml.ledger.api.v2.rs"));
pub mod admin {
include!(concat!(env!("OUT_DIR"), "/com.daml.ledger.api.v2.admin.rs"));
}
pub mod testing {
include!(concat!(env!("OUT_DIR"), "/com.daml.ledger.api.v2.testing.rs"));
}
pub mod interactive {
include!(concat!(env!("OUT_DIR"), "/com.daml.ledger.api.v2.interactive.rs"));
pub mod transaction {
pub mod v1 {
include!(concat!(
env!("OUT_DIR"),
"/com.daml.ledger.api.v2.interactive.transaction.v1.rs"
));
}
}
}
}
}
}
}
}
pub mod google {
pub mod rpc {
include!(concat!(env!("OUT_DIR"), "/google.rpc.rs"));
}
}