prost-build 0.14.3

Generate Prost annotated Rust types from Protocol Buffers files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This file is @generated by prost-build.
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct SmokeRequest {
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct SmokeResponse {
}
/// Just a smoke test service.
trait SmokeService {
    // A detached comment block.

    /// Blow some smoke.
    fn blow_smoke(_: SmokeRequest) -> SmokeResponse;
}
pub mod utils { }