Skip to main content

Vine/Generated/
mod.rs

1//! # Vine::Generated
2//!
3//! `tonic_prost_build` output for `Proto/Vine.proto`. Do not edit
4//! `vine.rs` by hand - it is regenerated on every build by `build.rs` at
5//! the crate root.
6//!
7//! ## Message Types
8//!
9//! - `Empty` - placeholder for RPCs with no return value
10//! - `GenericRequest` - request with ID, method, JSON parameters
11//! - `GenericResponse` - response with ID, result, or error
12//! - `GenericNotification` - fire-and-forget notification
13//! - `RpcError` - JSON-RPC compliant error structure
14//! - `CancelOperationRequest` - request to cancel an in-flight operation
15//! - `RpcDataPayload` - generic data payload (future extension point)
16//!
17//! ## Service Clients
18//!
19//! - `cocoon_service_client::CocoonServiceClient`
20//! - `mountain_service_client::MountainServiceClient`
21//!
22//! ## Service Servers
23//!
24//! - `cocoon_service_server::{CocoonService, CocoonServiceServer}`
25//! - `mountain_service_server::{MountainService, MountainServiceServer}`
26
27#![allow(
28	clippy::all,
29
30	unused_imports,
31
32	unknown_lints,
33
34	non_shorthand_field_patterns,
35
36	non_snake_case,
37
38	non_camel_case_types,
39
40	non_upper_case_globals,
41
42	dead_code,
43
44	unused_variables,
45
46	unused_assignments
47)]
48
49include!("vine.rs");