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
//! MessagePack-RPC implementation in Rust.
//!
//! Provides asynchronous RPC servers and clients over TCP and Unix domain sockets.
//! Implements the full MessagePack-RPC specification.
//!
//! Both servers and clients can handle incoming RPC messages, enabling bidirectional
//! communication.
//!
//! To implement a server:
//! 1. Implement the `Connection` trait
//! 2. Create a `Server` with the service
//! 3. Call `server.tcp(addr)` or `server.unix(path)`
//! 4. Call `server.run()`
//!
//! To implement a client:
//! 1. Implement the `Connection` trait
//! 2. Create a `Client` via `Client::connect_tcp(addr, service)` or
//! `Client::connect_unix(path, service)`
//! 3. Use `client.send_request()` or `client.send_notification()`
/// Error types for RPC operations.
pub use ;
pub use ;
pub use *;
pub use *;
pub use Value;
pub use *;