libzrpc 0.1.0

A RPC library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(incomplete_features)]
#![feature(specialization)]

pub mod client;
pub mod error;
pub mod middleware;
pub mod server;
pub mod transport;
pub mod types;
mod utils;